stevenrouk / docker-stacks

Ready-to-run Docker images containing Jupyter applications

Home Page:https://jupyter-docker-stacks.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Jupyter Docker Stacks - With Auto-Sklearn Stack

Identical to jupyter/docker-stacks, with the addition of a new "auto-sklearn-notebook" folder that has a Dockerfile for building an image that installs auto-sklearn.

If you want a Docker image that is already pre-built, and has a much simpler Dockerfile, see here: stevenrouk/autosklearn. This is built from a Docker image originally created by Matthias Feurer.

To run the Docker image in a new container with a name of "autosklearn" and a volume mounted to the current working directory:

docker run -it --name autosklearn -v $PWD:/opt/nb -p 8888:8888 stevenrouk/autosklearn \
/bin/bash -c "mkdir -p /opt/nb && jupyter notebook --notebook-dir=/opt/nb --ip='0.0.0.0' --port=8888 --no-browser --allow-root"

About

Ready-to-run Docker images containing Jupyter applications

https://jupyter-docker-stacks.readthedocs.io

License:Other


Languages

Language:Shell 43.7%Language:Dockerfile 30.6%Language:Python 21.1%Language:Makefile 4.6%