Created
May 11, 2018 05:40
-
-
Save keidrun/0451bf812e83c49abe1acc009f5bc325 to your computer and use it in GitHub Desktop.
Jupyter notebook with Docker Compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| services: | |
| jupyter-notebook: | |
| image: continuumio/anaconda3:5.1.0 | |
| ports: | |
| - "8888:8888" | |
| volumes: | |
| - ./data/notebooks:/data/notebooks | |
| command: jupyter notebook --notebook-dir=/data/notebooks --ip=0.0.0.0 --port=8888 --no-browser --allow-root |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment