openclaw/render.yaml
Anurag Goel fe64c84147
render: add dockerCommand and fix gateway port config
- Add dockerCommand to start gateway with --bind lan --port 8080
- Replace unused INTERNAL_GATEWAY_PORT with CLAWDBOT_GATEWAY_PORT
- Gateway now properly starts on port 8080 for Render's HTTP proxy

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-25 18:53:39 -08:00

25 lines
627 B
YAML

services:
- type: web
name: clawdbot
runtime: docker
plan: starter
healthCheckPath: /health
dockerCommand: node dist/index.js gateway --bind lan --port 8080 --allow-unconfigured
envVars:
- key: PORT
value: "8080"
- key: CLAWDBOT_GATEWAY_PORT
value: "8080"
- key: SETUP_PASSWORD
sync: false
- key: CLAWDBOT_STATE_DIR
value: /data/.clawdbot
- key: CLAWDBOT_WORKSPACE_DIR
value: /data/workspace
- key: CLAWDBOT_GATEWAY_TOKEN
generateValue: true
disk:
name: clawdbot-data
mountPath: /data
sizeGB: 1