dso/docker-compose.dev.yml

14 lines
299 B
YAML
Raw Permalink Normal View History

2026-09-03 19:51:56 +02:00
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: