Skip to content

Instantly share code, notes, and snippets.

@jgoerner
Created March 19, 2019 19:56
Show Gist options
  • Save jgoerner/50c930eee3475e90faca5deed059356f to your computer and use it in GitHub Desktop.
Save jgoerner/50c930eee3475e90faca5deed059356f to your computer and use it in GitHub Desktop.
docker-compose using external volume
version: "3"
services:
jupyter:
image: jupyter/scipy-notebook
ports:
- 8888:8888
volumes:
- jp_vol:/home/jovyan/work
volumes:
jp_vol:
external: true # magic happens here :-)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment