flutter-vienna-hackathon-25/wien_talks_server/docker-compose.local.yaml
2025-08-17 11:57:58 +02:00

16 lines
359 B
YAML

services:
postgres:
image: postgres:16-trixie
container_name: postgres-dev
environment:
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_DB=${POSTGRES_DB}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
volumes:
- db-local:/var/lib/postgresql/data
restart: unless-stopped
ports:
- "8090:5432"
volumes:
db-local: