# Local Postgres for the gateway/ingestion store (B-1). # docker compose -f backend/docker-compose.yml up -d # export DATABASE_URL=postgres://postgres:postgres@127.0.0.1:55432/wheretowatch services: postgres: image: postgres:16-alpine environment: POSTGRES_PASSWORD: postgres POSTGRES_DB: wheretowatch ports: - "55432:5432" volumes: - wtw_pgdata:/var/lib/postgresql/data healthcheck: test: ["CMD-SHELL", "pg_isready -U postgres"] interval: 5s timeout: 3s retries: 10 volumes: wtw_pgdata: