Skip to content

Commit

Permalink
added docker-compose with continuumio/anaconda3
Browse files Browse the repository at this point in the history
  • Loading branch information
Carsten Senf committed Apr 22, 2020
1 parent 26fca5d commit 518cb83
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: '3.3'

services:

anaconda:
image: continuumio/anaconda3
volumes:
- ./:/opt/notebooks
ports:
- "8888:8888"
command:
/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"
tty: true

0 comments on commit 518cb83

Please sign in to comment.