We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26fca5d commit 518cb83Copy full SHA for 518cb83
docker-compose.yaml
@@ -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