| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- # 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
|