Spaces:
Runtime error
Runtime error
File size: 306 Bytes
9dbdecc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
version: '3'
services:
app:
build: .
ports:
- "8000:8000"
depends_on:
- db
environment:
- PYTHONUNBUFFERED=1
command: python app.py
db:
image: postgres
environment:
- POSTGRES_USER=myuser
- POSTGRES_PASSWORD=mypassword
- POSTGRES_DB=mydb |