Sandbox
This document explains how to run Qwen Code inside a sandbox to reduce risk when tools execute shell commands or modify files.
Prerequisites
Before using sandboxing, you need to install and set up Qwen Code:
npm install -g @qwen-code/qwen-codeTo verify the installation
qwen --versionOverview of sandboxing
Sandboxing isolates potentially dangerous operations (such as shell commands or file modifications) from your host system, providing a security barrier between the CLI and your environment.
The benefits of sandboxing include:
- Security: Prevent accidental system damage or data loss.
- Isolation: Limit file system access to project directory.
- Consistency: Ensure reproducible environments across different systems.
- Safety: Reduce risk when working with untrusted code or experimental commands.
Naming note: Some sandbox-related environment variables may have used the GEMINI_* prefix historically. All new environment variables use the QWEN_* prefix.
Sandboxing methods
Your ideal method of sandboxing may differ depending on your platform and your preferred container solution.
1. macOS Seatbelt (macOS only)
Lightweight, built-in sandboxing using sandbox-exec.
Default profile: permissive-open - restricts writes outside the project directory, but allows most other operations and outbound network access.
Best for: Fast, no Docker required, strong guardrails for file writes.
2. Container-based (Docker/Podman)
Cross-platform sandboxing with complete process isolation.
By default, Qwen Code uses a published sandbox image (configured in the CLI package) and will pull it as needed.
The container sandbox mounts your workspace and your ~/.qwen directory into the container so auth and settings persist between runs.
Best for: Strong isolation on any OS, consistent tooling inside a known image.
Choosing a method
- On macOS:
- Use Seatbelt when you want lightweight sandboxing (recommended for most users).
- Use Docker/Podman when you need a full Linux userland (e.g., tools that require Linux binaries).
- On Linux/Windows:
- Use Docker or Podman.
Quickstart
# Enable sandboxing with command flag
qwen -s -p "analyze the code structure"
# Or enable sandboxing for your shell session (recommended for CI / scripts)
export QWEN_SANDBOX=true # true auto-picks a provider (see notes below)
qwen -p "run the test suite"
# Configure in settings.json
{
"tools": {
"sandbox": true
}
}Provider selection notes:
- On macOS,
QWEN_SANDBOX=truetypically selectssandbox-exec(Seatbelt) if available. - On Linux/Windows,
QWEN_SANDBOX=truerequiresdockerorpodmanto be installed. - To force a provider, set
QWEN_SANDBOX=docker|podman|sandbox-exec.
Configuration
Enable sandboxing (in order of precedence)
- Environment variable:
QWEN_SANDBOX=true|false|docker|podman|sandbox-exec - Command flag / argument:
-s,--sandbox, or--sandbox=<provider> - Settings file:
tools.sandboxin yoursettings.json(e.g.,{"tools": {"sandbox": true}}).
If QWEN_SANDBOX is set, it overrides the CLI flag and settings.json.
Configure the sandbox image (Docker/Podman)
- CLI flag:
--sandbox-image <image> - Environment variable:
QWEN_SANDBOX_IMAGE=<image>
If you don’t set either, Qwen Code uses the default image configured in the CLI package (for example ghcr.io/qwenlm/qwen-code:<version>).
macOS Seatbelt profiles
Built-in profiles (set via SEATBELT_PROFILE env var):
permissive-open(default): Write restrictions, network allowedpermissive-closed: Write restrictions, no networkpermissive-proxied: Write restrictions, network via proxyrestrictive-open: Strict restrictions, network allowedrestrictive-closed: Maximum restrictionsrestrictive-proxied: Strict restrictions, network via proxy
Start with permissive-open, then tighten to restrictive-closed if your workflow still works.
Custom Seatbelt profiles (macOS)
To use a custom Seatbelt profile:
- Create a file named
.qwen/sandbox-macos-<profile_name>.sbin your project. - Set
SEATBELT_PROFILE=<profile_name>.
Custom Sandbox Flags
For container-based sandboxing, you can inject custom flags into the docker or podman command using the SANDBOX_FLAGS environment variable. This is useful for advanced configurations, such as disabling security features for specific use cases.
Example (Podman):
To disable SELinux labeling for volume mounts, you can set the following:
export SANDBOX_FLAGS="--security-opt label=disable"Multiple flags can be provided as a space-separated string:
export SANDBOX_FLAGS="--flag1 --flag2=value"Network proxying (all sandbox methods)
If you want to restrict outbound network access to an allowlist, you can run a local proxy alongside the sandbox:
- Set
QWEN_SANDBOX_PROXY_COMMAND=<command> - The command must start a proxy server that listens on
:::8877
This is especially useful with *-proxied Seatbelt profiles.
For a working allowlist-style proxy example, see: Example Proxy Script.
Linux UID/GID handling
On Linux, Qwen Code defaults to enabling UID/GID mapping so the sandbox runs as your user (and reuses the mounted ~/.qwen). Override with:
export SANDBOX_SET_UID_GID=true # Force host UID/GID
export SANDBOX_SET_UID_GID=false # Disable UID/GID mappingTroubleshooting
Common issues
“Operation not permitted”
- Operation requires access outside sandbox.
- On macOS Seatbelt: try a more permissive
SEATBELT_PROFILE. - On Docker/Podman: verify the workspace is mounted and your command doesn’t require access outside the project directory.
Missing commands
- Container sandbox: add them via
.qwen/sandbox.Dockerfileor.qwen/sandbox.bashrc. - Seatbelt: your host binaries are used, but the sandbox may restrict access to some paths.
Java not available in Docker sandbox
The official Qwen Code Docker image is intentionally minimal to keep the image small, secure, and fast to pull. Different users require different language runtimes (Java, Python, Node.js, etc.), and bundling all environments into a single image is not practical. Therefore, Java is not included by default in the Docker sandbox.
If your workflow requires Java, you can extend the base image by creating a .qwen/sandbox.Dockerfile in your project:
FROM ghcr.io/qwenlm/qwen-code:latest
RUN apt-get update && \
apt-get install -y openjdk-17-jre && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*Then rebuild the sandbox image:
QWEN_SANDBOX=docker BUILD_SANDBOX=1 qwen -sFor more details on customizing the sandbox, see Customizing the sandbox environment.
Network issues
- Check sandbox profile allows network.
- Verify proxy configuration.
Debug mode
DEBUG=1 qwen -s -p "debug command"Note: If you have DEBUG=true in a project’s .env file, it won’t affect the CLI due to automatic exclusion. Use .qwen/.env files for Qwen Code-specific debug settings.
Inspect sandbox
# Check environment
qwen -s -p "run shell command: env | grep SANDBOX"
# List mounts
qwen -s -p "run shell command: mount | grep workspace"Security notes
- Sandboxing reduces but doesn’t eliminate all risks.
- Use the most restrictive profile that allows your work.
- Container overhead is minimal after the first pull/build.
- GUI applications may not work in sandboxes.
Related documentation
- Configuration: Full configuration options.
- Commands: Available commands.
- Troubleshooting: General troubleshooting.