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