https://github.com/docker/sbx-releases
https://github.com/docker/sbx-releases
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/docker/sbx-releases
- Owner: docker
- License: other
- Created: 2026-03-03T14:37:50.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-05-16T04:31:08.000Z (14 days ago)
- Last Synced: 2026-05-16T06:27:31.837Z (14 days ago)
- Homepage: https://docs.docker.com/ai/sandboxes
- Size: 19.5 KB
- Stars: 136
- Watchers: 9
- Forks: 3
- Open Issues: 99
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Docker Sandboxes
Safe environments for agents. Built by Docker.
[](https://github.com/docker/sbx-releases/releases/latest)
# What it does
It provides sandboxes with controlled access to your filesystem, network, and tools. This means your agents can work autonomously without putting your machine or data at risk.
# Details
- Docker-native isolation. Same containerization principles trusted by 20M+ developers.
- Vendor-neutral. Works with the models and tools you’re already using.
# What you get
- YOLO mode by default: agents work without asking permission
- Private Docker daemon for running test containers
- File access controls between host and sandbox
- Network access control
- Works with Claude Code, Codex, Gemini CLI, OpenCode, and more
# Install
### Homebrew (macOS)
```bash
brew install docker/tap/sbx
```
### WinGet (Windows)
```powershell
winget install -h Docker.sbx
```
### APT (Ubuntu)
```bash
curl -fsSL https://get.docker.com | sudo REPO_ONLY=1 sh
sudo apt-get install docker-sbx
sudo usermod -aG kvm $USER
newgrp kvm
```
## Manual install from release artifacts
Download the artifacts for your platform from the
[latest release](https://github.com/docker/sbx-releases/releases/latest).
### macOS
Download `DockerSandboxes-darwin.tar.gz` and extract:
```bash
tar -xzf DockerSandboxes-darwin.tar.gz
```
### Windows
Download [`DockerSandboxes.msi`](https://github.com/docker/sbx-releases/releases/latest/download/DockerSandboxes.msi)
and double-click to install, or use the command line:
```powershell
msiexec /i DockerSandboxes.msi /quiet
```
### Ubuntu
Download the `.deb` package from the release and install:
```bash
sudo apt install ./DockerSandboxes-linux-amd64-ubuntu2604.deb
```
### Rocky Linux 8
Download the `.rpm` package from the release and install:
```bash
sudo dnf install ./DockerSandboxes-linux-amd64-rockylinux8.rpm
```
## Nightly releases
Nightly builds from `main` are available at
[docker/sbx-releases/releases/tag/nightly](https://github.com/docker/sbx-releases/releases/tag/nightly).
On macOS, you can install the nightly build via Homebrew:
```bash
brew install docker/tap/sbx@nightly
```
For other platforms, download the artifacts from the nightly release page and
follow the manual install instructions above.
# Feedback
If you run into issues or have feedback, please
[open an issue](https://github.com/docker/sbx-releases/issues) on this repository.
# Learn more
[Docs](https://docs.docker.com/ai/sandboxes/)
# License
Proprietary — Docker Inc.
[LICENSE](https://github.com/docker/sbx-releases/blob/HEAD/LICENSE)