Jupyter Notebook Data Science environment from Ubuntu + Miniconda
1.0K
mkdir ~/notebooks # Create a shared notebooks directory
mkdir ~/.jupyter # Configuration..
docker pull cmihai/jupyter
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
docker logs jupyter
Then access the notebook. Ex: http://localhost:8888
If you have no password set up, you can use the token displayed by docker logs jupyter.
Other images exist, such as:
Content type
Image
Digest
Size
1.1 GB
Last updated
almost 8 years ago
docker pull cmihai/jupyter