mitgliederverwaltung/docker-compose.yml
Simon b83eeba578
All checks were successful
continuous-integration/drone/push Build is passing
chore: add docker-compose for local postgres container
2025-05-21 14:31:57 +02:00

25 lines
No EOL
420 B
YAML

version: "3.5"
services:
db:
image: postgres:17.2-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: