# Local 热加载挂载配置 # 使用方式: # docker compose -f docker-compose.local.yml -f docker-compose.local.mount.yml up -d services: app: build: context: . target: app-runtime-local-hot volumes: - .:/app - /app/vendor - /app/node_modules - /app/public/build - ./storage:/app/storage - ./.env:/app/.env queue: build: context: . target: worker-local-hot volumes: - .:/app - /app/vendor - /app/node_modules - /app/public/build - ./storage:/app/storage - ./.env:/app/.env pdf-worker: build: context: . target: worker-local-hot volumes: - .:/app - /app/vendor - /app/node_modules - /app/public/build - ./storage:/app/storage - ./.env:/app/.env logic-worker: build: context: . target: worker-local-hot volumes: - .:/app - /app/vendor - /app/node_modules - /app/public/build - ./storage:/app/storage - ./.env:/app/.env