From charlesreid1

(Created page with "For this, I used the docker image from docker hub, waleedka/modern-deep-learning. This comes with Jupyter, which runs on port 8888 by default. The following command will run...")
 
No edit summary
Line 6: Line 6:
$ docker run -it -p 8888:8888 -v ~/:/host waleedka/modern-deep-learning
$ docker run -it -p 8888:8888 -v ~/:/host waleedka/modern-deep-learning
</pre>
</pre>
=Flags=
{{DockerFlag}}

Revision as of 04:14, 25 March 2017

For this, I used the docker image from docker hub, waleedka/modern-deep-learning.

This comes with Jupyter, which runs on port 8888 by default. The following command will run this docker container and pass the container's port 8888 through to the host machine's port 8888:

$ docker run -it -p 8888:8888 -v ~/:/host waleedka/modern-deep-learning


Flags