Files
ai_job_chat_agent/docker-compose.yml

23 lines
480 B
YAML
Raw Normal View History

2026-01-12 11:33:43 +08:00
version: '3.8'
services:
qd-sc-server:
build:
context: .
dockerfile: Dockerfile
image: t0ng7u/qd-sc:latest
ports:
- "8080:8080"
volumes:
- ./config.yaml:/app/config.yaml:ro
environment:
- GIN_MODE=release
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:8080/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s