IPython Notebook plus pandas, matplotlib, scipy, and scikit-learn.
3.1K
Note: I highly recommend you look at https://index.docker.io/u/parente/ipython/ instead which is simpler, has a Dockerfile, and is a trusted build.
Based on https://index.docker.io/u/crosbymichael/ipython/ but with the addition of scipy and scikit-learn.
To run the IPython Notebook without a password over HTTP and expose it to the host:
docker run -d -p 8888 parente/ipython-notebook
To run the IPython Notebook with a password of your choosing and a generated HTTPS certificate, and expose it to the host:
docker run -d -p 8888 -e PASSWORD=$( read -p "Password: " -s PASSWORD && echo $PASSWORD ) parente/ipython-notebook
Library versions from pip freeze:
Jinja2==2.7.1
MarkupSafe==0.18
PIL==1.1.7
argparse==1.2.1
distribute==0.6.49
ipython==1.1.0
matplotlib==1.3.1
nose==1.3.0
numpy==1.8.0
pandas==0.12.0
pyparsing==2.0.1
python-dateutil==2.1
pytz==2013.7
pyzmq==14.0.0
scikit-learn==0.14.1
scipy==0.13.0
six==1.4.1
tornado==3.1.1
wsgiref==0.1.2
Content type
Image
Digest
sha256:466f90fb9…
Size
530.1 MB
Last updated
almost 11 years ago
docker pull parente/ipython-notebook