Files
macros/05_sqlx/docker-compose.yaml
T
2026-04-15 16:02:38 +02:00

16 lines
347 B
YAML

services:
database:
image: postgres:18
ports:
- 5432:5432
environment:
- TZ=Europe/Amsterdam
- PGTZ=Europe/Amsterdam
- POSTGRES_PASSWORD=rustiscool
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres -d postgres"]
interval: 10s
retries: 5
start_period: 10s
timeout: 10s