From 9ec36e64db7a960e8369a8d25673e8c883c0677b Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 26 Jan 2026 13:15:05 +0000 Subject: [PATCH] fix: simplify docker-compose.json - remove healthCheck, use string command --- runtipi/clawdbot/docker-compose.json | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/runtipi/clawdbot/docker-compose.json b/runtipi/clawdbot/docker-compose.json index 133192034..73ab846b7 100644 --- a/runtipi/clawdbot/docker-compose.json +++ b/runtipi/clawdbot/docker-compose.json @@ -65,15 +65,9 @@ "containerPath": "/home/node/clawd" } ], - "command": ["node", "dist/index.js", "gateway", "--bind", "lan", "--port", "18789"], + "command": "node dist/index.js gateway --bind lan --port 18789", "internalPort": 18789, - "isMain": true, - "healthCheck": { - "test": "node dist/index.js health --token \"$CLAWDBOT_GATEWAY_TOKEN\" || exit 1", - "interval": "30s", - "timeout": "10s", - "retries": 3 - } + "isMain": true } ] }