From 8234a5b9599aeb3b1cf23354b592f7b35345e2ca Mon Sep 17 00:00:00 2001 From: "openclaw-docs-sync[bot]" Date: Sun, 5 Apr 2026 21:31:48 +0000 Subject: [PATCH] chore(sync): mirror docs from openclaw/openclaw@2176b68e50d83fd2a182b1809db8cef7c035cf95 --- .openclaw-sync/source.json | 4 ++-- docs/install/docker.md | 10 ++-------- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/.openclaw-sync/source.json b/.openclaw-sync/source.json index 93a648073..a84c1f272 100644 --- a/.openclaw-sync/source.json +++ b/.openclaw-sync/source.json @@ -1,5 +1,5 @@ { "repository": "openclaw/openclaw", - "sha": "932194b7d58cb952ef81464f8226d29ce1759215", - "syncedAt": "2026-04-05T21:07:33.780Z" + "sha": "2176b68e50d83fd2a182b1809db8cef7c035cf95", + "syncedAt": "2026-04-05T21:31:48.090Z" } diff --git a/docs/install/docker.md b/docs/install/docker.md index 927a3f5e3..aa38e1b33 100644 --- a/docs/install/docker.md +++ b/docs/install/docker.md @@ -103,12 +103,7 @@ docker build -t openclaw:local -f Dockerfile . docker compose run --rm --no-deps --entrypoint node openclaw-gateway \ dist/index.js onboard --mode local --no-install-daemon docker compose run --rm --no-deps --entrypoint node openclaw-gateway \ - dist/index.js config set gateway.mode local -docker compose run --rm --no-deps --entrypoint node openclaw-gateway \ - dist/index.js config set gateway.bind lan -docker compose run --rm --no-deps --entrypoint node openclaw-gateway \ - dist/index.js config set gateway.controlUi.allowedOrigins \ - '["http://localhost:18789","http://127.0.0.1:18789"]' --strict-json + dist/index.js config set --batch-json '[{"path":"gateway.mode","value":"local"},{"path":"gateway.bind","value":"lan"},{"path":"gateway.controlUi.allowedOrigins","value":["http://localhost:18789","http://127.0.0.1:18789"]}]' docker compose up -d openclaw-gateway ``` @@ -395,8 +390,7 @@ scripts/sandbox-setup.sh Reset gateway mode and bind: ```bash - docker compose run --rm openclaw-cli config set gateway.mode local - docker compose run --rm openclaw-cli config set gateway.bind lan + docker compose run --rm openclaw-cli config set --batch-json '[{"path":"gateway.mode","value":"local"},{"path":"gateway.bind","value":"lan"}]' docker compose run --rm openclaw-cli devices list --url ws://127.0.0.1:18789 ```