Skip to content

Instantly share code, notes, and snippets.

@limitpointinf0
Created May 5, 2019 11:08
Show Gist options
  • Save limitpointinf0/40b01f346aaca670f4f406600a32beb0 to your computer and use it in GitHub Desktop.
Save limitpointinf0/40b01f346aaca670f4f406600a32beb0 to your computer and use it in GitHub Desktop.
data science platform with docker compose
version: "3"
services:
jupyter:
container_name: "ds_jupyter"
image: jupyter/scipy-notebook
ports:
- 8888:8888
superset:
container_name: "ds_superset"
image: tylerfowler/superset
ports:
- 8088:8088
postgres:
container_name: "ds_postgres"
image: postgres
volumes:
- ds_pg_volume:/var/lib/postgresql/
ports:
- 5432:5432
minio:
container_name: "ds_minio"
image: minio/minio
volumes:
- ds_minio_volume:/data
ports:
- 9000:9000
command:
- server /data
volumes:
ds_pg_volume:
ds_minio_volume:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment