Created
May 27, 2018 18:11
-
-
Save tcotav/ad19b3373d7823641ed44af17f1684c7 to your computer and use it in GitHub Desktop.
simple jupyter datascience notebook docker-compose
This file contains 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: | |
web: | |
# pin it to a hard version -- latest will burn you sooner or later :) | |
image: jupyter/datascience-notebook:4d19a9839c05 | |
ports: | |
- "8888:8888" | |
# I use two separate volumes -- one for the data | |
# then one for any additional working scripts or ETL you've got related to the data and this file | |
volumes: | |
- ~/jp:/home/jovyan/data | |
- .:/home/jovyan/work |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment