# Development overrides # Copy this file to docker-compose.override.yml for local development # # Usage: # cp docker-compose.override.yml.example docker-compose.override.yml # docker compose up # # This enables: # - Hot reload for both frontend and backend # - Source code mounted as volumes # - Debug ports exposed # - Development environment settings services: honeycomb: build: context: ./honeycomb dockerfile: Dockerfile.dev volumes: - ./honeycomb/src:/app/src:ro - ./honeycomb/public:/app/public:ro - ./honeycomb/index.html:/app/index.html:ro environment: - VITE_API_URL=http://localhost:4000 hive: build: context: ./hive dockerfile: Dockerfile.dev volumes: - ./hive/src:/app/src:ro environment: - NODE_ENV=development - LOG_LEVEL=debug # Uncomment to enable Node.js debugging # ports: # - "9229:9229"