synthwave/docker-compose.yml
2024-10-04 19:39:51 +02:00

27 lines
611 B
YAML

version: '3'
services:
synthwave:
build: .
ports:
- "8080:8000"
depends_on:
- postgres
volumes:
- ./data:/data # Runtime data (optional)
- ./media:/media # Audio files
environment:
- "DATABASE_URL=postgres://user:pass@postgres/synthwave"
- "RUST_LOG=info"
- "ROCKET_ADDRESS=0.0.0.0"
postgres:
image: timescale/timescaledb:latest-pg16
restart: always
ports:
- 5432:5432
volumes:
- ./db:/var/lib/postgresql/data/
environment:
- POSTGRES_USER=user
- POSTGRES_PASSWORD=pass
- POSTGRES_DB=synthwave