Files
totalmcp/docker-compose.yml
T

18 lines
403 B
YAML
Raw Normal View History

2026-05-09 22:18:00 -05:00
services:
totalmcp:
build: .
container_name: totalmcp-dev
ports:
- "8811:8811"
env_file:
- .env
volumes:
- ./data:/app/data
- /var/run/docker.sock:/var/run/docker.sock:ro
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "wget -qO- http://localhost:8811/health || exit 1"]
interval: 30s
timeout: 10s
start_period: 15s