18 lines
403 B
YAML
18 lines
403 B
YAML
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
|