version: "3.9" services: api: build: . environment: SERVICE_NAME: platform-projects-core ENVIRONMENT: development HTTP_ADDRESS: ":8080" DATABASE_DSN: postgres://postgres:postgres@db:5432/platform_projects?sslmode=disable AUTH_JWKS_URL: "" AUTH_FALLBACK_SECRET: "dev-secret" AUTH_AUDIENCE: "platform" AUTH_ISSUER: "platform-core" ports: - "8080:8080" depends_on: - db db: image: postgres:16 environment: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres POSTGRES_DB: platform_projects ports: - "5432:5432" volumes: - pgdata:/var/lib/postgresql/data volumes: pgdata: