File size: 530 Bytes
c9776a6 8cc0fda c9776a6 8cc0fda | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | services:
gemini-api:
build: .
container_name: gemini-business2api
ports:
- "7860:7860"
volumes:
- ./data:/app/data
env_file:
- .env
restart: unless-stopped
# 健康检查
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:7860/admin/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
# 日志限制
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
|