version: '3.8' services: postgres: image: postgres:16-alpine container_name: lilith-landing-db environment: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres POSTGRES_DB: lilith_landing ports: - "25438:5432" volumes: - landing_postgres_data:/var/lib/postgresql/data healthcheck: test: ["CMD-SHELL", "pg_isready -U postgres"] interval: 5s timeout: 5s retries: 5 volumes: landing_postgres_data: