- R Deep Learning Cookbook
- Dr. PKS Prakash Achyutuni Sri Krishna Rao
- 140字
- 2021-07-02 20:49:09
How to do it...
Docker will all dependencies can be installed using following steps:
- Save the preceding code to a location with a name, say, Dockerfile.
- Using the command line, go to the file location and use the following command and it is also shown in the screenshot after the command:
docker run -t "TagName:FILENAME"

Building the docker image
- Access the image using the docker images command as follows:

View docker images
- Docker images can be executed using the following command:
docker run -it -p 8888:8888 -p 54321:54321 <<IMAGE ID>>

Running a Docker image
Here, the option -i is for interactive mode and -t is to allocate --tty. The option -p is used to forward the port. As we will be running Jupyter on port 8888 and H2O on 54321, we have forwarded both ports to accessible from the local browser.
推薦閱讀
- Android Wearable Programming
- 軟件安全技術(shù)
- JMeter 性能測試實(shí)戰(zhàn)(第2版)
- Hands-On Data Structures and Algorithms with JavaScript
- SQL語言從入門到精通
- 從學(xué)徒到高手:汽車電路識(shí)圖、故障檢測與維修技能全圖解
- Visual Basic學(xué)習(xí)手冊
- 零基礎(chǔ)學(xué)Python數(shù)據(jù)分析(升級(jí)版)
- GeoServer Beginner's Guide(Second Edition)
- 編程數(shù)學(xué)
- UVM實(shí)戰(zhàn)
- 響應(yīng)式架構(gòu):消息模式Actor實(shí)現(xiàn)與Scala、Akka應(yīng)用集成
- C語言程序設(shè)計(jì)
- Odoo 10 Implementation Cookbook
- Web性能實(shí)戰(zhàn)