# Local dev overrides — use with: docker compose -f docker-compose.yml -f docker-compose.dev.yml up services: api: build: context: . dockerfile: apps/api/Dockerfile target: dev volumes: - ./apps/api/src:/app/apps/api/src environment: NODE_ENV: development # Local-dev only: skip OIDC and authenticate as Dev User id 1. Guarded by # NODE_ENV !== 'production' (and the production image bakes NODE_ENV=production), # so this can never activate in a shipped image. Required by the e2e harness. DEV_AUTH_BYPASS: 'true' mariadb: ports: - '3306:3306' redis: ports: - '6379:6379'