An open API service indexing awesome lists of open source software.

https://github.com/docker/sbx-releases


https://github.com/docker/sbx-releases

Last synced: 2 days ago
JSON representation

Awesome Lists containing this project

README

          

# Docker Sandboxes

Safe environments for agents. Built by Docker.

[![GitHub Release](https://img.shields.io/github/v/release/docker/sbx-releases?color=2560ff&labelColor=e7eaef)](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)