Created
March 3, 2017 16:06
-
-
Save joelkr/f7edd75a59c784d3e458958443faf6cb to your computer and use it in GitHub Desktop.
docker-compose.yml for kaggle
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
notebook: | |
image: my-data-science-docker:0.1 | |
ports: | |
- "80:8888" | |
environment: | |
- WISEDS_CODE_DIR=${PWD} | |
- WISEDS_DATA_DIR=${PWD}/data | |
# - IPYTHON_PASSWORD=WhoMe321 | |
- PASSWORD=WhoMe321 | |
- KERAS_BACKEND=theano | |
volumes: | |
- .:/home/workspace/ | |
# - ./data:/home/workspace/data | |
links: | |
- db | |
db: | |
image: postgres:9.5-alpine | |
environment: | |
- POSTGRES_PASSWORD=WhoMe321 | |
volumes: | |
- ./pgdata:/var/lib/postgresql/data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment