Files
turnstone-mcp/compose.yaml
T
2026-07-15 14:42:24 +01:00

25 lines
515 B
YAML

---
volumes:
workspace:
external: true
name: turnstone_workspace
services:
mcp-server:
build:
context: .
dockerfile: Dockerfile
user: "1000:1000"
ports:
- "8000:8000"
volumes:
- ${WORKSPACE_MOUNT:-workspace}:/workspace
restart: unless-stopped
healthcheck:
test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8000/health')"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s