- 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.
推薦閱讀
- DB2 V9權威指南
- Delphi程序設計基礎:教程、實驗、習題
- Visual C++實例精通
- 高級C/C++編譯技術(典藏版)
- Cassandra Data Modeling and Analysis
- Learning Firefox OS Application Development
- Programming with CodeIgniterMVC
- 搞定J2EE:Struts+Spring+Hibernate整合詳解與典型案例
- GameMaker Essentials
- 從零開始:UI圖標設計與制作(第3版)
- 軟件體系結構
- Arduino Wearable Projects
- JavaScript從入門到精通(視頻實戰版)
- Learning Grunt
- 從零開始:C語言快速入門教程