version: '3.8'
services:
mcp-server:
build: .
ports:
- "8000:8000"
volumes:
- ./config.json:/app/config.json
environment:
- DEBUG=0
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/api/status"]
interval: 30s
timeout: 10s
retries: 3