# Production overrides - optimized builds # Usage: docker compose -f docker-compose.yml -f docker-compose.prod.yml up -d services: backend: build: target: production environment: - APP_ENV=production - DEBUG=false restart: always frontend-sba: build: target: production environment: - NODE_ENV=production restart: always healthcheck: test: ["CMD", "node", "-e", "require('http').get('http://localhost:3000', (r) => {process.exit(r.statusCode === 200 ? 0 : 1)})"] interval: 30s timeout: 10s retries: 3 redis: restart: always