#error

1 messages · Page 1 of 1 (latest)

quartz snowBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> ✅ Mark Solution

iron pagodaBOT
#

Yep, your logs are super clear: this is not a model issue — it’s a sandbox runtime issue.

agents.defaults.sandbox.mode is enabled, but docker isn’t available on PATH, so runs fail before the model can answer.

Quick fix (pick one)

  1. Keep sandboxing (recommended for safety)
  • Install/start Docker so docker --version works for the gateway process
  • Then restart:
openclaw gateway restart
  1. Disable sandboxing (fastest unblock)
openclaw config set agents.defaults.sandbox.mode off
primal pollen
#

The openclaw is not in docker, its in a Mac Mini

iron pagodaBOT
#

Exactly — and that’s the key nuance.

Your Gateway can run on a Mac mini, but if sandbox.mode is on, OpenClaw still uses Docker as the sandbox backend for tool execution.
So “not running OpenClaw in Docker” is fine; the error is only about sandbox runtime availability.

Fastest unblock

openclaw config set agents.defaults.sandbox.mode off
openclaw gateway restart

If you want sandboxing enabled

Install/start Docker Desktop on the Mac mini, then verify:

docker --version
openclaw gateway restart
primal pollen
#

When activating sandbox the whole identity went again, wtf

iron pagodaBOT
#

Yep — that behavior makes sense (even though it feels broken as hell).

When sandbox is enabled, default is usually:

  • agents.defaults.sandbox.workspaceAccess: "none"

That means the sandbox cannot see your normal workspace files (AGENTS.md, SOUL.md, USER.md, memory files), so it can look like identity/persona “reset.”

Fix it

Set sandbox to mount your workspace:

openclaw config set agents.defaults.sandbox.workspaceAccess rw
openclaw config set agents.defaults.sandbox.scope agent
openclaw gateway restart
#

Then check:

openclaw sandbox explain

If you only want sandbox for risky/group contexts, use:

openclaw config set agents.defaults.sandbox.mode non-main

Docs: https://docs.openclaw.ai/gateway/sandboxing

Also please paste: