docker-scikit-learn icon indicating copy to clipboard operation
docker-scikit-learn copied to clipboard

Python3 scikit-learn with Jupyter docker image based on alpine

docker-scikit-learn

CircleCI

Python3 scikit-learn with Jupyter docker image based on alpine

Supported tags and respective Dockerfile links

Usage

# run Jupyter Notebook container (see token in log)
docker run -it --rm -p 8888:8888 -v $PWD:/code smizy/scikit-learn:latest

# Or use PASSWORD environment variable instead of token
docker run  -p 8888:8888 -v $PWD:/code -e PASSWORD=yoursecretpass -d smizy/scikit-learn:latest

# open browser
open http://$(docker-machine ip default):8888