16 lines
357 B
YAML
16 lines
357 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
app:
|
|
ports:
|
|
- "8000:8000"
|
|
environment:
|
|
- DATABASE_URL=postgresql://postgres:password@db:5432/fitbit_garmin_sync
|
|
|
|
db:
|
|
ports:
|
|
- "5433:5432" # Changed to 5433 to avoid conflicts
|
|
environment:
|
|
- POSTGRES_DB=fitbit_garmin_sync
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_PASSWORD=password |