# Docker Compose override for development # This file is automatically merged with docker-compose.yml in development # Use: docker compose up (will automatically include this file) services: app: # Development-specific settings environment: - NODE_ENV=development - NEXT_TELEMETRY_DISABLED=1 # Enable hot reloading for development volumes: - ./:/app - /app/node_modules - ./screenshots:/app/screenshots - ./videos:/app/videos - ./.env:/app/.env # Mount .env file for development # Override command for development command: ["npm", "run", "dev:docker"] # Note: Using host networking so no port bindings needed # Ports are available directly on host via network_mode: host # Add development labels labels: - "traefik.enable=false" - "dev.local=true"