# Production overrides for docker-compose.yml services: web: build: context: . dockerfile: web/Dockerfile target: production environment: DEBUG: 0 restart: always web-bridge: build: context: . dockerfile: web/Dockerfile target: production environment: DEBUG: 0 restart: always ingestor: build: context: . dockerfile: data/Dockerfile target: production environment: DEBUG: 0 restart: always ingestor-bridge: build: context: . dockerfile: data/Dockerfile target: production environment: DEBUG: 0 restart: always