Files
openclaw/docker-compose.yml

55 lines
1.6 KiB
YAML
Raw Normal View History

2026-01-02 13:52:08 +02:00
services:
2026-01-30 03:15:10 +01:00
openclaw-gateway:
image: ${OPENCLAW_IMAGE:-openclaw:local}
2026-01-02 13:52:08 +02:00
environment:
HOME: /home/node
TERM: xterm-256color
2026-01-30 03:15:10 +01:00
OPENCLAW_GATEWAY_TOKEN: ${OPENCLAW_GATEWAY_TOKEN}
CLAUDE_AI_SESSION_KEY: ${CLAUDE_AI_SESSION_KEY:-}
CLAUDE_WEB_SESSION_KEY: ${CLAUDE_WEB_SESSION_KEY:-}
CLAUDE_WEB_COOKIE: ${CLAUDE_WEB_COOKIE:-}
2026-01-02 13:52:08 +02:00
volumes:
2026-01-30 03:15:10 +01:00
- ${OPENCLAW_CONFIG_DIR}:/home/node/.openclaw
- ${OPENCLAW_WORKSPACE_DIR}:/home/node/.openclaw/workspace
2026-01-02 13:52:08 +02:00
ports:
2026-01-31 21:13:13 +09:00
- "${OPENCLAW_GATEWAY_PORT:-18789}:18789"
- "${OPENCLAW_BRIDGE_PORT:-18790}:18790"
2026-01-02 13:52:08 +02:00
init: true
restart: unless-stopped
command:
[
2026-01-31 21:13:13 +09:00
"node",
"dist/index.js",
"gateway",
2026-01-31 21:13:13 +09:00
"--bind",
"${OPENCLAW_GATEWAY_BIND:-lan}",
"--port",
2026-02-01 18:51:44 +00:00
"18789",
2026-01-02 13:52:08 +02:00
]
2026-01-30 03:15:10 +01:00
openclaw-cli:
image: ${OPENCLAW_IMAGE:-openclaw:local}
network_mode: "service:openclaw-gateway"
cap_drop:
- NET_RAW
- NET_ADMIN
security_opt:
- no-new-privileges:true
2026-01-02 13:52:08 +02:00
environment:
HOME: /home/node
TERM: xterm-256color
2026-02-02 04:25:57 -08:00
OPENCLAW_GATEWAY_TOKEN: ${OPENCLAW_GATEWAY_TOKEN}
2026-01-02 13:52:08 +02:00
BROWSER: echo
CLAUDE_AI_SESSION_KEY: ${CLAUDE_AI_SESSION_KEY:-}
CLAUDE_WEB_SESSION_KEY: ${CLAUDE_WEB_SESSION_KEY:-}
CLAUDE_WEB_COOKIE: ${CLAUDE_WEB_COOKIE:-}
2026-01-02 13:52:08 +02:00
volumes:
2026-01-30 03:15:10 +01:00
- ${OPENCLAW_CONFIG_DIR}:/home/node/.openclaw
- ${OPENCLAW_WORKSPACE_DIR}:/home/node/.openclaw/workspace
2026-01-02 13:52:08 +02:00
stdin_open: true
tty: true
init: true
2026-01-31 21:13:13 +09:00
entrypoint: ["node", "dist/index.js"]
depends_on:
- openclaw-gateway