/docker-data-science

Docker for Data Science Demo

Primary LanguageJupyter NotebookMIT LicenseMIT

Reproducible Data Science with Docker

Docker image:

Docker Compose file and scripts

How to run the image:

  • This image has been published as cmihai/jupyter. Just do a:
docker pull
docker run --init --detach \
    --name jupyter --hostname jupyter \
    -p 8888:8888 \
    --volume ${HOME}/notebooks:/home/jupyter/notebooks:rw \
    --volume ${HOME}/.jupyter:/home/jupyter/.jupyter \
    cmihai/jupyter

Alternative Images:

https://github.com/jupyter/docker-stacks/tree/master/datascience-notebook is quite popular.. you can use that instead.

docker run -it --rm -p 8888:8888 jupyter/datascience-notebook

Reference and where to learn more: