mitgliederverwaltung/docker-compose.yml
Renovate Bot 4182f399a2
All checks were successful
continuous-integration/drone/push Build is passing
chore(deps): update postgres to v17.5
2025-06-12 16:36:43 +02:00

24 lines
406 B
YAML

services:
db:
image: postgres:17.5-alpine
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: mv_dev
volumes:
- type: volume
source: postgres-data
target: /var/lib/postgresql/data
volume:
nocopy: true
ports:
- "5000:5432"
networks:
- local
networks:
local:
volumes:
postgres-data: