1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/jupyter
2016-05-27 14:34:08 +08:00
..
docker-compose.yml update jupyter 2016-05-27 14:34:08 +08:00
README.md update jupyter 2016-05-27 14:34:08 +08:00

jupyter

Minimal Jupyter Notebook Stack

docker-compose.yml

notebook:
  image: jupyter/minimal-notebook
  ports:
    - "8888:8888"
  volumes:
    - ./work:/home/jovyan/work
  restart: unless-stopped

up and running

cd ~/fig/jupyter/
mkdir work
chown 1000:1000 work
docker-compose up -d