services: moltbot-gateway: image: ghcr.io/moltbot/clawdbot:2026.1.24-1 environment: HOME: /home/node TERM: xterm-256color CLAWDBOT_GATEWAY_TOKEN: ${CLAWDBOT_GATEWAY_TOKEN} CLAUDE_AI_SESSION_KEY: ${CLAUDE_AI_SESSION_KEY} CLAUDE_WEB_SESSION_KEY: ${CLAUDE_WEB_SESSION_KEY} CLAUDE_WEB_COOKIE: ${CLAUDE_WEB_COOKIE} CLAWDBOT_GATEWAY_URL: ws://0.0.0.0:18789 OPENROUTER_API_KEY: ${OPENROUTER_API_KEY} volumes: - moltbot-config:/home/node/.clawdbot - moltbot-workspace:/home/node/clawd ports: - "18789" - "18790" init: true restart: unless-stopped command: [ "node", "dist/index.js", "gateway", "--bind", "auto", "--port", "18789", "--allow-unconfigured" ] volumes: moltbot-config: moltbot-workspace: