Initial commit

This commit is contained in:
Morpheus Sandmann
2026-07-15 14:42:24 +01:00
commit 09b17505e8
5 changed files with 653 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
---
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