Skip to content

Instantly share code, notes, and snippets.

@collinprather
Created March 14, 2020 21:58
Show Gist options
  • Save collinprather/133e47befffc2355a972cd44b6041ddd to your computer and use it in GitHub Desktop.
Save collinprather/133e47befffc2355a972cd44b6041ddd to your computer and use it in GitHub Desktop.
version: "3.7"
services:
db:
image: "postgres:12"
container_name: "postgres"
ports:
- "5432:5432"
volumes:
- db_data:/var/lib/postgresql/data
env_file:
- .env
streamlit:
build:
context: .
container_name: "streamlit"
ports:
- "8501:8501"
volumes:
db_data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment