1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-28 09:08:36 +02:00
dockerfiles/jupyter/README.md

26 lines
322 B
Markdown
Raw Normal View History

2016-05-27 07:24:39 +02:00
jupyter
=======
2016-05-27 08:34:08 +02:00
Minimal Jupyter Notebook Stack
## docker-compose.yml
```yaml
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
```