# Docker Compose Override for Development # This file provides local build configurations for development # Use: docker-compose -f docker-compose.yml -f docker-compose.dev.yml up version: '3.8' services: # Development overrides - builds locally instead of using registry whoosh-backend: build: context: ./modules/whoosh/backend dockerfile: Dockerfile volumes: - ./modules/whoosh/backend:/app - ./modules/whoosh/config:/app/config environment: - ENVIRONMENT=development - LOG_LEVEL=debug whoosh-frontend: build: context: ./modules/whoosh/frontend dockerfile: Dockerfile volumes: - ./modules/whoosh/frontend:/app - /app/node_modules bzzz-coordinator: build: context: ./modules/bzzz dockerfile: Dockerfile volumes: - ./modules/bzzz/config:/app/config - ./modules/bzzz/data:/app/data environment: - BZZZ_NODE_ENV=development - BZZZ_LOG_LEVEL=debug slurp-api: build: context: ./modules/slurp/hcfs-python dockerfile: Dockerfile volumes: - ./modules/slurp/data:/app/data - ./modules/slurp/config:/app/config environment: - HCFS_LOG_LEVEL=debug slurp-rl-tuner: build: context: ./modules/slurp dockerfile: Dockerfile.rl-tuner environment: - LOG_LEVEL=debug