Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 1.26 KB

File metadata and controls

24 lines (17 loc) · 1.26 KB

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