@@ -5,11 +5,66 @@ weight: 20
55params :
66 sidebar :
77 group : AI
8+ badge :
9+ color : violet
10+ text : Experimental
811---
912
10- Docker Sandboxes let you run AI coding agents in isolated environments using
11- the ` docker sandbox ` command. Sandboxes require Docker Desktop and run agents
12- in microVMs with private Docker daemons.
13+ {{< summary-bar feature_name="Docker Sandboxes sbx" >}}
1314
14- For setup instructions and usage details, see the
15- [ Docker Desktop sandboxes] ( docker-desktop.md ) page.
15+ Docker Sandboxes run AI coding agents in isolated microVM sandboxes. Each
16+ sandbox gets its own Docker daemon, filesystem, and network — the agent can
17+ build containers, install packages, and modify files without touching your host
18+ system.
19+
20+ ## Get started
21+
22+ Install the ` sbx ` CLI and sign in:
23+
24+ {{< tabs >}}
25+ {{< tab name="macOS" >}}
26+
27+ ``` console
28+ $ brew install docker/tap/sbx
29+ $ sbx login
30+ ```
31+
32+ {{< /tab >}}
33+ {{< tab name="Windows" >}}
34+
35+ ``` powershell
36+ > winget install -h Docker.sbx
37+ > sbx login
38+ ```
39+
40+ {{< /tab >}}
41+ {{< /tabs >}}
42+
43+ Then launch an agent in a sandbox:
44+
45+ ``` console
46+ $ cd ~ /my-project
47+ $ sbx run claude
48+ ```
49+
50+ See the [ get started guide] ( get-started.md ) for a full walkthrough, or jump to
51+ the [ usage guide] ( usage.md ) for common patterns.
52+
53+ ## Learn more
54+
55+ - [ Agents] ( agents/ ) — supported agents and per-agent configuration
56+ - [ Custom environments] ( agents/custom-environments.md ) — build reusable sandbox
57+ images with pre-installed tools
58+ - [ Architecture] ( architecture.md ) — microVM isolation, workspace mounting,
59+ networking
60+ - [ Security] ( security/ ) — isolation model, credential handling, network
61+ policies, workspace trust
62+ - [ CLI reference] ( /reference/cli/sbx/ ) — full list of ` sbx ` commands and options
63+ - [ Troubleshooting] ( troubleshooting.md ) — common issues and fixes
64+ - [ FAQ] ( faq.md ) — login requirements, telemetry, etc
65+
66+ ## Docker Desktop integration
67+
68+ Docker Desktop also includes a [ built-in sandbox command] ( docker-desktop.md )
69+ (` docker sandbox ` ) with a subset of features. The ` sbx ` CLI is recommended for
70+ most use cases.
0 commit comments