Skip to content

Instantly share code, notes, and snippets.

@keidrun
Created May 11, 2018 05:40
Show Gist options
  • Select an option

  • Save keidrun/0451bf812e83c49abe1acc009f5bc325 to your computer and use it in GitHub Desktop.

Select an option

Save keidrun/0451bf812e83c49abe1acc009f5bc325 to your computer and use it in GitHub Desktop.
Jupyter notebook with Docker Compose
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