dso/docker-compose.dev.yml
Aron August Hohmann c452a505e2 first commit
2026-09-03 19:51:56 +02:00

14 lines
No EOL
299 B
YAML

services:
postgres:
image: postgres:16-alpine
environment:
POSTGRES_DB: donauschwaben
POSTGRES_USER: donauschwaben
POSTGRES_PASSWORD: devpassword
ports:
- "5432:5432"
volumes:
- postgres_dev_data:/var/lib/postgresql/data
volumes:
postgres_dev_data: