#error
1 messages · Page 1 of 1 (latest)
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)
- Keep sandboxing (recommended for safety)
- Install/start Docker so
docker --versionworks for the gateway process - Then restart:
openclaw gateway restart
- Disable sandboxing (fastest unblock)
openclaw config set agents.defaults.sandbox.mode off
openclaw gateway restart
Please run this first (version check)
openclaw --version
Then paste:
openclaw status --all
openclaw gateway status
Docs:
The openclaw is not in docker, its in a Mac Mini
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
Useful sanity checks
openclaw --version
openclaw sandbox explain
openclaw doctor
Docs:
- Sandboxing: https://docs.openclaw.ai/gateway/sandboxing
- Doctor: https://docs.openclaw.ai/cli/doctor
- FAQ: https://docs.openclaw.ai/help/faq
If you paste openclaw sandbox explain, I can tell you the exact final config to use (off / non-main / all).
When activating sandbox the whole identity went again, wtf
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: