|
|
@@ -2,12 +2,19 @@ version: '3.8'
|
|
|
|
|
|
services:
|
|
|
backend:
|
|
|
- build: .
|
|
|
- container_name: filemanager_backend
|
|
|
+ container_name: backend
|
|
|
+ restart: unless-stopped
|
|
|
ports:
|
|
|
- "8000:8000"
|
|
|
- env_file:
|
|
|
- - .env
|
|
|
- restart: always
|
|
|
volumes:
|
|
|
- - ./app:/app/app # 挂载代码目录,方便热更新(生产环境可去掉)
|
|
|
+ - ./home/baoshi/minio/backend/app:/app
|
|
|
+ - ./home/baoshi/minio/backend/logs:/app/logs
|
|
|
+ depends_on:
|
|
|
+ minio:
|
|
|
+ condition: service_healthy
|
|
|
+ healthcheck:
|
|
|
+ test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
|
|
|
+ interval: 30s
|
|
|
+ timeout: 10s
|
|
|
+ retries: 3
|
|
|
+ start_period: 40s
|