Last active
May 26, 2016 07:24
-
-
Save calvingiles/b6123c301954fe68e29a to your computer and use it in GitHub Desktop.
fig.yml for setting up a data science environment
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
notebooks: | |
command: echo created | |
image: busybox | |
volumes: | |
- "~/Google Drive/notebooks:/notebooks" | |
data: | |
command: echo created | |
image: busybox | |
volumes: | |
- "~/Google Drive/data:/data" | |
devpostgresdata: | |
command: echo created | |
image: busybox | |
volumes: | |
- /var/lib/postgresql/data | |
devpostgres: | |
environment: | |
- POSTRGES_PASSWORD | |
image: postgres | |
ports: | |
- "5433:5432" | |
volumes_from: | |
- devpostgresdata | |
notebook: | |
environment: | |
- PASSWORD | |
image: calvingiles/data-science-environment | |
links: | |
- devpostgres:postgres | |
ports: | |
- "443:8888" | |
volumes_from: | |
- notebooks | |
- data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment