Files
TTurnier/docker-compose.yml
2025-04-07 22:48:24 +02:00

19 lines
405 B
YAML

services:
db:
image: postgres:latest
container_name: postgresql
restart: unless-stopped
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
POSTGRES_DB: tt_tournament
ports:
- "5432:5432"
volumes:
- ./pg_data:/var/lib/postgresql/data
- ./src/db/init.sql:/docker-entrypoint-initdb.d/init.sql
volumes:
pg_data:
driver: local