惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

有赞技术团队
有赞技术团队
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium
WordPress大学
WordPress大学
罗磊的独立博客
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
Docker
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
I
InfoQ
J
Java Code Geeks
博客园 - 聂微东
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
美团技术团队
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
feat(docker): add OPENCLAW_SKIP_ONBOARDING env to skip on...
jinjimz · 2026-04-29 · via Recent Commits to openclaw:main

@@ -12,6 +12,8 @@ RAW_SANDBOX_SETTING="${OPENCLAW_SANDBOX:-}"

1212

SANDBOX_ENABLED=""

1313

DOCKER_SOCKET_PATH="${OPENCLAW_DOCKER_SOCKET:-}"

1414

TIMEZONE="${OPENCLAW_TZ:-}"

15+

RAW_SKIP_ONBOARDING="${OPENCLAW_SKIP_ONBOARDING:-}"

16+

SKIP_ONBOARDING=""

15171618

fail() {

1719

echo "ERROR: $*" >&2

@@ -232,6 +234,9 @@ fi

232234

if is_truthy_value "$RAW_SANDBOX_SETTING"; then

233235

SANDBOX_ENABLED="1"

234236

fi

237+

if is_truthy_value "$RAW_SKIP_ONBOARDING"; then

238+

SKIP_ONBOARDING="1"

239+

fi

235240236241

OPENCLAW_CONFIG_DIR="${OPENCLAW_CONFIG_DIR:-$HOME/.openclaw}"

237242

OPENCLAW_WORKSPACE_DIR="${OPENCLAW_WORKSPACE_DIR:-$HOME/.openclaw/workspace}"

@@ -295,6 +300,7 @@ export OTEL_EXPORTER_OTLP_PROTOCOL="${OTEL_EXPORTER_OTLP_PROTOCOL:-}"

295300

export OTEL_SERVICE_NAME="${OTEL_SERVICE_NAME:-}"

296301

export OTEL_SEMCONV_STABILITY_OPT_IN="${OTEL_SEMCONV_STABILITY_OPT_IN:-}"

297302

export OPENCLAW_OTEL_PRELOADED="${OPENCLAW_OTEL_PRELOADED:-}"

303+

export OPENCLAW_SKIP_ONBOARDING="$SKIP_ONBOARDING"

298304299305

# Detect Docker socket GID for sandbox group_add.

300306

DOCKER_GID=""

@@ -489,7 +495,8 @@ upsert_env "$ENV_FILE" \

489495

OTEL_EXPORTER_OTLP_PROTOCOL \

490496

OTEL_SERVICE_NAME \

491497

OTEL_SEMCONV_STABILITY_OPT_IN \

492-

OPENCLAW_OTEL_PRELOADED

498+

OPENCLAW_OTEL_PRELOADED \

499+

OPENCLAW_SKIP_ONBOARDING

493500494501

if [[ "$IMAGE_NAME" == "openclaw:local" ]]; then

495502

echo "==> Building Docker image: $IMAGE_NAME"

@@ -525,22 +532,26 @@ run_prestart_gateway --user root --entrypoint sh openclaw-gateway -c \

525532

[ -d /home/node/.openclaw/workspace/.openclaw ] && chown -R node:node /home/node/.openclaw/workspace/.openclaw || true'

526533527534

echo ""

528-

echo "==> Onboarding (interactive)"

529-

echo "Docker setup pins Gateway mode to local."

530-

echo "Gateway runtime bind comes from OPENCLAW_GATEWAY_BIND (default: lan)."

531-

echo "Current runtime bind: $OPENCLAW_GATEWAY_BIND"

532-

if is_truthy_value "$OPENCLAW_DISABLE_BONJOUR"; then

533-

echo "Bonjour/mDNS advertising: force disabled (OPENCLAW_DISABLE_BONJOUR=$OPENCLAW_DISABLE_BONJOUR)."

534-

elif [[ -z "$OPENCLAW_DISABLE_BONJOUR" ]]; then

535-

echo "Bonjour/mDNS advertising: auto (disabled inside the Gateway container unless explicitly enabled)."

535+

if [[ -n "$SKIP_ONBOARDING" ]]; then

536+

echo "==> Skipping onboarding (OPENCLAW_SKIP_ONBOARDING is set)"

536537

else

537-

echo "Bonjour/mDNS advertising: explicitly enabled (OPENCLAW_DISABLE_BONJOUR=$OPENCLAW_DISABLE_BONJOUR)."

538+

echo "==> Onboarding (interactive)"

539+

echo "Docker setup pins Gateway mode to local."

540+

echo "Gateway runtime bind comes from OPENCLAW_GATEWAY_BIND (default: lan)."

541+

echo "Current runtime bind: $OPENCLAW_GATEWAY_BIND"

542+

if is_truthy_value "$OPENCLAW_DISABLE_BONJOUR"; then

543+

echo "Bonjour/mDNS advertising: force disabled (OPENCLAW_DISABLE_BONJOUR=$OPENCLAW_DISABLE_BONJOUR)."

544+

elif [[ -z "$OPENCLAW_DISABLE_BONJOUR" ]]; then

545+

echo "Bonjour/mDNS advertising: auto (disabled inside the Gateway container unless explicitly enabled)."

546+

else

547+

echo "Bonjour/mDNS advertising: explicitly enabled (OPENCLAW_DISABLE_BONJOUR=$OPENCLAW_DISABLE_BONJOUR)."

548+

fi

549+

echo "Gateway token: $OPENCLAW_GATEWAY_TOKEN"

550+

echo "Tailscale exposure: Off (use host-level tailnet/Tailscale setup separately)."

551+

echo "Install Gateway daemon: No (managed by Docker Compose)"

552+

echo ""

553+

run_prestart_cli onboard --mode local --no-install-daemon

538554

fi

539-

echo "Gateway token: $OPENCLAW_GATEWAY_TOKEN"

540-

echo "Tailscale exposure: Off (use host-level tailnet/Tailscale setup separately)."

541-

echo "Install Gateway daemon: No (managed by Docker Compose)"

542-

echo ""

543-

run_prestart_cli onboard --mode local --no-install-daemon

544555545556

echo ""

546557

echo "==> Docker gateway defaults"