Troubleshooting
Run diagnostics
Before digging into a specific issue, run
sbx diagnose to check for common problems
with your installation, such as a missing CLI binary, an unresponsive daemon,
a CLI/daemon version mismatch, missing storage directories, or broken
authentication.
$ sbx diagnose
The command prints a summary of checks that passed, warned, or failed, along
with suggested fixes. Use --output json to get machine-readable output, or
--output github-issue to generate a Markdown snippet suitable for pasting
into a GitHub issue.
Resetting sandboxes
If you hit persistent issues or corrupted state, run
sbx reset to stop all VMs and delete all sandbox
data. Create fresh sandboxes afterwards.
Agent can't install packages or reach an API
Sandboxes use a deny-by-default network policy. If the agent fails to install packages or call an external API, the target domain is likely not in the allow list. Check which requests are being blocked:
$ sbx policy log
Then allow the domains your workflow needs:
$ sbx policy allow network -g "*.npmjs.org,*.pypi.org,files.pythonhosted.org"
To allow all outbound traffic instead:
$ sbx policy allow network -g "**"
If sbx policy allow doesn't unblock the request, your organization may
manage sandbox policies centrally and take precedence over local rules. See
Organization governance.
SSH and other non-HTTP connections fail
Non-HTTP TCP connections like SSH can be allowed by adding a policy rule for the destination IP address and port. For example, to allow SSH to a specific host:
$ sbx policy allow network -g "10.1.2.3:22"
Hostname-based rules (for example, myhost:22) don't work for non-HTTP
connections because the proxy can't resolve the hostname to an IP address in
this context. Use the IP address directly.
UDP and ICMP traffic is blocked at the network layer and can't be unblocked with policy rules.
For Git operations over SSH, you can either add an allow rule for the Git server's IP address or use HTTPS URLs instead:
$ git clone https://github.com/owner/repo.git
Can't reach a service running on the host
If a request to 127.0.0.1 or a local network IP returns "connection refused"
from inside a sandbox, the address is not reachable from within the sandbox VM.
See Accessing host services from a sandbox.
Docker authentication failure
If you see a message like You are not authenticated to Docker, your login
session has expired. In an interactive terminal, the CLI prompts you to sign in
again. In non-interactive environments such as scripts or CI, run sbx login
to re-authenticate.
Agent authentication failure
If the agent can't reach its model provider or you see API key errors, the key is likely invalid, expired, or not configured. Verify it's set in your shell configuration file and that you sourced it or opened a new terminal.
For agents that use the credential proxy, make sure you haven't set the API key to an invalid value inside the sandbox — the proxy injects credentials automatically on outbound requests.
If credentials are configured correctly but API calls still fail, check
sbx policy log and look at the PROXY column. Requests routed through
the transparent proxy don't get credential injection. This can happen when a
client inside the sandbox (such as a process in a Docker container) isn't
configured to use the forward proxy. See
Monitoring network activity
for details.
API calls fail with a certificate error
If your organization uses a proxy that inspects HTTPS traffic, agent requests
can fail with a certificate error such as
SSL certificate problem: self-signed certificate in certificate chain. Install
your organization's internal root CA inside the sandbox so the agent and its
SDKs trust certificates signed by the proxy. Certificate errors can stop a
request before the credential proxy can inject credentials.
For repeatable setup, create a sandbox kit that installs the CA when the sandbox is created. See Install an internal CA certificate for an example kit.
Use a PEM-encoded certificate with a .crt extension. If traffic can be signed
by more than one internal proxy, install each proxy's root CA before running
update-ca-certificates.
Create a sandbox with the kit:
$ sbx run claude --kit ./internal-ca/
To update an existing sandbox, copy the certificate into the sandbox and update the trust store:
$ sbx cp ./internal-ca.crt <sandbox-name>:/tmp/internal-ca.crt
$ sbx exec <sandbox-name> -- sudo install -m 0644 /tmp/internal-ca.crt /usr/local/share/ca-certificates/internal-ca.crt
$ sbx exec <sandbox-name> -- sudo update-ca-certificates
ImportantInstall the CA into the system trust store with
update-ca-certificates, as shown above. Don't override the sandbox's TLS trust variables (such asSSL_CERT_FILE) to point at only your internal CA. Doing so replaces the system bundle and breaks the trust the credential proxy depends on, so requests on theforwardegress path fail.
If API calls still fail after installing the CA, run sbx policy log and check
the egress path in the PROXY column:
forward: the credential proxy terminates TLS and presents its own certificate, which the sandbox already trusts. Requests on this path don't need the internal CA, and overriding the sandbox's trust variables breaks them, as described above.forward-bypassandtransparent: the proxy forwards packets to the upstream proxy without terminating TLS, so the sandbox sees your organization's certificate directly. These paths are where installing the internal CA applies. The only difference between them is whether the client knows it's talking to a proxy.
Docker build export fails with an ownership error
Running docker build with the local exporter (--output=type=local or -o <path>) inside a sandbox fails because the exporter tries to lchown output
files to preserve ownership from the build. Processes inside the sandbox run as
an unprivileged user without CAP_CHOWN, so the operation is denied.
Use the tar exporter and extract the archive instead:
$ mkdir -p ./result
$ docker build --output type=tar,dest=- . | tar xf - -C ./result
Extracting the tar archive as the current user avoids the chown call.
Filesystem operations are slow in large repositories
Filesystem operations such as git status, git log, or directory scans can
be noticeably slow when the sandbox workspace is mounted in direct mode (the
default for workspaces without --clone). The slowness occurs because virtiofs
caching is disabled by default to prevent data corruption.
To speed up filesystem-intensive workloads, opt into virtiofs caching when creating the sandbox:
$ DOCKER_SANDBOXES_ENABLE_VIRTIOFS_CACHE=1 sbx run <template>
The setting is persisted in the sandbox spec and applies for the lifetime of that sandbox. If you experience Git index corruption or unexpected file content after enabling the cache, remove the sandbox and recreate it without the flag.
Clone mode reports "not in a Git repository" on WSL
On Windows, running sbx run --clone against a
repository on a WSL filesystem (a \\wsl.localhost\... path) can fail even
though the directory is a valid Git repository:
> sbx run --clone claude \\wsl.localhost\Ubuntu\home\you\repo
ERROR: --clone requires a Git repository, but \\wsl.localhost\Ubuntu\home\you\repo is not in a Git repository
The cause is Git's dubious ownership check. When Git on Windows accesses a repository owned by a different user across the WSL boundary, it refuses to operate on it, so the underlying repository detection fails:
> git -C \\wsl.localhost\Ubuntu\home\you\repo rev-parse --show-toplevel
fatal: detected dubious ownership in repository at '//wsl.localhost/Ubuntu/home/you/repo'
Add the repository to Git's safe.directory list to allow access, then run
the command again:
> git config --global --add safe.directory '%(prefix)///wsl.localhost/Ubuntu/home/you/repo'
> sbx run --clone claude \\wsl.localhost\Ubuntu\home\you\repo
✓ Git repository detected: \\wsl.localhost\Ubuntu\home\you\repo
Stale Git worktree after removing a sandbox
If you used --branch, worktree cleanup during sbx rm is best-effort. If
it fails, the sandbox is removed but the branch and worktree are left behind.
If git worktree list shows a stale worktree in .sbx/ after removing a
sandbox, clean it up manually:
$ git worktree remove .sbx/<sandbox-name>-worktrees/<branch-name>
$ git branch -D <branch-name>
Sandbox commits aren't signed
Docker Sandboxes can sign Git commits with SSH keys from your host agent. For setup steps, see Signed commits.
If ssh-add -L prints The agent has no identities., the sandbox can reach
the forwarded agent, but the host agent doesn't have a loaded key. Load the
signing key into your host SSH agent:
$ ssh-add ~/.ssh/id_ed25519
If commit signing works on the host but fails in a sandbox, check whether Git
is configured to sign with a host file path such as
/Users/me/.ssh/id_ed25519.pub. The sandbox uses the forwarded SSH agent, not
the host key file path. Use the inline public key form instead:
$ git config --global gpg.format ssh
$ git config --global user.signingkey "key::$(ssh-add -L | head -n 1)"
If Git reports that ssh-keygen is missing, use a sandbox template that
includes OpenSSH client tools.
If git log --show-signature reports that gpg.ssh.allowedSignersFile needs
to be configured, Git can't verify the SSH signature locally. This verification
config isn't required to create signed commits. GitHub uses the SSH signing
keys configured in your GitHub account to verify commits.
GPG and S/MIME signing keys aren't available inside the sandbox. If your repository or organization requires GPG or S/MIME signatures, or if SSH signing isn't configured, use one of these workarounds:
Commit outside the sandbox. Let the agent make changes without committing, then commit and sign from your host terminal.
Sign after the fact. Let the agent commit inside the sandbox, then re-sign the commits on your host:
$ git rebase --exec 'git commit --amend --no-edit -S' origin/mainThis replays each commit on the branch and re-signs it with your local signing key.
Daemon fails to start after downgrading
If you downgrade sbx to a version older than the one that last managed your
local state, the daemon may fail to start with a database version mismatch:
ERROR: failed to start backend in-process: start backend: creating containerd
server: ... database is at major version 6, but this binary only supports up
to major version 1A newer version of sbx upgraded the local database to a schema that older
binaries don't understand. To recover, reset all sandbox state:
$ sbx reset --preserve-secrets
This stops all VMs and deletes all sandbox data. You'll need to create new
sandboxes afterwards. The --preserve-secrets flag keeps any secrets you've
set so you don't have to reconfigure them.
Removing all state
As a last resort, if sbx reset doesn't resolve your issue, you can remove the
sbx state directory entirely. This deletes all sandbox data, configuration, and
cached images. Stop all running sandboxes first with sbx reset.
$ rm -rf ~/Library/Application\ Support/com.docker.sandboxes/
> Remove-Item -Recurse -Force "$env:LOCALAPPDATA\DockerSandboxes"Sandbox state on Linux follows the XDG Base Directory specification and is spread across three directories:
$ rm -rf ~/.local/state/sandboxes/
$ rm -rf ~/.cache/sandboxes/
$ rm -rf ~/.config/sandboxes/
If you have set custom XDG_STATE_HOME, XDG_CACHE_HOME, or
XDG_CONFIG_HOME environment variables, replace ~/.local/state,
~/.cache, and ~/.config with the corresponding values.
Report an issue
If you've exhausted the steps above and the problem persists, file a GitHub issue at github.com/docker/sbx-releases/issues.
To help Docker investigate, generate a diagnostics bundle and share it when reporting the issue:
$ sbx diagnose --upload
The bundle contains daemon logs, diagnostic check results, and basic system
information. When --upload is confirmed, the bundle is uploaded to Docker
support and the command prints a diagnostics ID. Include this ID in your
issue so the team can correlate it with the uploaded bundle.