Skip to content

Commit 518cb83

Browse files
author
Carsten Senf
committed
added docker-compose with continuumio/anaconda3
1 parent 26fca5d commit 518cb83

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

docker-compose.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: '3.3'
2+
3+
services:
4+
5+
anaconda:
6+
image: continuumio/anaconda3
7+
volumes:
8+
- ./:/opt/notebooks
9+
ports:
10+
- "8888:8888"
11+
command:
12+
/bin/bash -c "/opt/conda/bin/conda install jupyter -y --quiet && /opt/conda/bin/jupyter notebook --notebook-dir=/opt/notebooks --ip='0.0.0.0' --port=8888 --no-browser --allow-root"
13+
tty: true

0 commit comments

Comments
 (0)