arbret/docker-compose.yml

20 lines
374 B
YAML
Raw Permalink Normal View History

2025-12-18 21:48:41 +01:00
services:
db:
image: postgres:17
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: arbret
ports:
- "5432:5432"
volumes:
- pgdata:/var/lib/postgresql/data
2025-12-18 22:08:31 +01:00
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 2s
timeout: 5s
retries: 10
2025-12-18 21:48:41 +01:00
volumes:
pgdata: