Skip to content

Instantly share code, notes, and snippets.

@vfdev-5
Last active January 31, 2017 12:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vfdev-5/345de5db568f1436beca87c13b3efb05 to your computer and use it in GitHub Desktop.
Save vfdev-5/345de5db568f1436beca87c13b3efb05 to your computer and use it in GitHub Desktop.
Start jupyter-notebook from Yandex HSE docker

Start jupyter-notebook from yandex HSE docker image

Build image from Dockerfile:

cd /path/to/HSE_deeplearning/
docker build -t yandex-docker .

Start container (once):

docker run -it -p 8888:8888 -v /path/to/HSE_deeplearning:/home/main/HSE_deeplearning --name yd_dl yandex-docker

and for the second and other times:

docker start -i yd_dl

Launch in the container:

jupyter-notebook --no-browser --ip=0.0.0.0 --port=8888
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment