Rename CLAWDBOT to MOLTBOT in docker-compose.yml

This commit is contained in:
Saket Poswal 2026-01-29 19:05:35 +05:30 committed by GitHub
parent 4a29a784f5
commit dd1810f071
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,20 +1,20 @@
services: services:
moltbot-gateway: moltbot-gateway:
build: . build: .
image: ${CLAWDBOT_IMAGE:-moltbot:local} image: ${MOLTBOT_IMAGE:-moltbot:local}
environment: environment:
HOME: /home/node HOME: /home/node
TERM: xterm-256color TERM: xterm-256color
CLAWDBOT_GATEWAY_TOKEN: ${CLAWDBOT_GATEWAY_TOKEN} MOLTBOT_GATEWAY_TOKEN: ${MOLTBOT_GATEWAY_TOKEN}
CLAUDE_AI_SESSION_KEY: ${CLAUDE_AI_SESSION_KEY} CLAUDE_AI_SESSION_KEY: ${CLAUDE_AI_SESSION_KEY}
CLAUDE_WEB_SESSION_KEY: ${CLAUDE_WEB_SESSION_KEY} CLAUDE_WEB_SESSION_KEY: ${CLAUDE_WEB_SESSION_KEY}
CLAUDE_WEB_COOKIE: ${CLAUDE_WEB_COOKIE} CLAUDE_WEB_COOKIE: ${CLAUDE_WEB_COOKIE}
volumes: volumes:
- ${CLAWDBOT_CONFIG_DIR}:/home/node/.moltbot - ${MOLTBOT_CONFIG_DIR}:/home/node/.moltbot
- ${CLAWDBOT_WORKSPACE_DIR}:/home/node/moltbot - ${MOLTBOT_WORKSPACE_DIR}:/home/node/moltbot
ports: ports:
- "${CLAWDBOT_GATEWAY_PORT:-18789}:18789" - "${MOLTBOT_GATEWAY_PORT:-18789}:18789"
- "${CLAWDBOT_BRIDGE_PORT:-18790}:18790" - "${MOLTBOT_BRIDGE_PORT:-18790}:18790"
init: true init: true
restart: unless-stopped restart: unless-stopped
command: command:
@ -23,14 +23,14 @@ services:
"dist/index.js", "dist/index.js",
"gateway", "gateway",
"--bind", "--bind",
"${CLAWDBOT_GATEWAY_BIND:-lan}", "${MOLTBOT_GATEWAY_BIND:-lan}",
"--port", "--port",
"${CLAWDBOT_GATEWAY_PORT:-18789}" "${MOLTBOT_GATEWAY_PORT:-18789}"
] ]
moltbot-cli: moltbot-cli:
build: . build: .
image: ${CLAWDBOT_IMAGE:-moltbot:local} image: ${MOLTBOT_IMAGE:-moltbot:local}
environment: environment:
HOME: /home/node HOME: /home/node
TERM: xterm-256color TERM: xterm-256color
@ -39,8 +39,8 @@ services:
CLAUDE_WEB_SESSION_KEY: ${CLAUDE_WEB_SESSION_KEY} CLAUDE_WEB_SESSION_KEY: ${CLAUDE_WEB_SESSION_KEY}
CLAUDE_WEB_COOKIE: ${CLAUDE_WEB_COOKIE} CLAUDE_WEB_COOKIE: ${CLAUDE_WEB_COOKIE}
volumes: volumes:
- ${CLAWDBOT_CONFIG_DIR}:/home/node/.moltbot - ${MOLTBOT_CONFIG_DIR}:/home/node/.moltbot
- ${CLAWDBOT_WORKSPACE_DIR}:/home/node/moltbot - ${MOLTBOT_WORKSPACE_DIR}:/home/node/moltbot
stdin_open: true stdin_open: true
tty: true tty: true
init: true init: true