dvbooking/environment/e2e/docker-compose.yaml
Roland Schneider 2f54770720 add e2e
2025-10-29 16:30:17 +01:00

18 lines
286 B
YAML

version: '3.8'
services:
postgres:
image: postgres:18
restart: always
environment:
POSTGRES_USER: test
POSTGRES_PASSWORD: test
POSTGRES_DB: test
ports:
- '4401:5432'
volumes:
- e2epgdata:/var/lib/postgresql
volumes:
e2epgdata: {}