Python3 scikit-learn with Jupyter docker image based on alpine
# 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