fix: simplify docker-compose.json - remove healthCheck, use string command

This commit is contained in:
Claude 2026-01-26 13:15:05 +00:00
parent 822ed1f166
commit 9ec36e64db
No known key found for this signature in database

View File

@ -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
}
]
}