Created
December 13, 2018 09:37
-
-
Save AlessandroVaccarino/f7a1081319b6af8a4d1fcbfa7f1c1e63 to your computer and use it in GitHub Desktop.
A simple shell to run Jupyter datascience notebook docker image
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run \ | |
--detach \ | |
--restart always \ | |
--publish 8888:8888 \ | |
--volume=/srv/jupyter:/home/jovyan/work \ | |
--env=GEN_CERT=yes \ | |
--env=JUPYTER_ENABLE_LAB=yes \ | |
--name jupyter \ | |
jupyter/datascience-notebook start-notebook.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment