Skip to content

Commit 5ef0cfa

Browse files
authored
Merge pull request #4 from dvdksn/docs-installation-feedback
Add manual install, nightly, and feedback sections to README
2 parents d020116 + 363373d commit 5ef0cfa

File tree

1 file changed

+67
-3
lines changed

1 file changed

+67
-3
lines changed

README.md

Lines changed: 67 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
# Docker Sandboxes
2+
23
Safe environments for agents. Built by Docker.
34

45
[![GitHub Release](https://img.shields.io/github/v/release/docker/sbx-releases?color=2560ff&labelColor=e7eaef)](https://github.com/docker/sbx-releases/releases/latest)
56

67
# What it does
8+
79
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.
810

911
# Details
12+
1013
- Docker-native isolation. Same containerization principles trusted by 20M+ developers.
1114
- Vendor-neutral. Works with the models and tools you’re already using.
1215

1316
# What you get
17+
1418
- YOLO mode by default: agents work without asking permission
1519
- Private Docker daemon for running test containers
1620
- File access controls between host and sandbox
@@ -19,20 +23,80 @@ It provides sandboxes with controlled access to your filesystem, network, and to
1923

2024
# Install
2125

22-
### Homebrew
26+
### Homebrew (macOS)
2327

2428
```bash
2529
brew install docker/tap/sbx
2630
```
2731

28-
### WinGet
32+
### WinGet (Windows)
33+
2934
```powershell
3035
winget install -h Docker.sbx
3136
```
3237

38+
## Manual install from release artifacts
39+
40+
Download the artifacts for your platform from the
41+
[latest release](https://github.com/docker/sbx-releases/releases/latest).
42+
43+
### macOS
44+
45+
Download `DockerSandboxes-darwin.tar.gz` and extract:
46+
47+
```bash
48+
tar -xzf DockerSandboxes-darwin.tar.gz
49+
```
50+
51+
### Windows
52+
53+
Download [`DockerSandboxes.msi`](https://github.com/docker/sbx-releases/releases/latest/download/DockerSandboxes.msi)
54+
and double-click to install, or use the command line:
55+
56+
```powershell
57+
msiexec /i DockerSandboxes.msi /quiet
58+
```
59+
60+
### Ubuntu / Debian
61+
62+
Download the `.deb` package from the release and install:
63+
64+
```bash
65+
sudo apt install ./DockerSandboxes-linux-amd64.deb
66+
```
67+
68+
### RHEL / Fedora
69+
70+
Download the `.rpm` package from the release and install:
71+
72+
```bash
73+
sudo dnf install ./DockerSandboxes-linux-amd64.rpm
74+
```
75+
76+
## Nightly releases
77+
78+
Nightly builds from `main` are available at
79+
[docker/sbx-releases/releases/tag/nightly](https://github.com/docker/sbx-releases/releases/tag/nightly).
80+
81+
On macOS, you can install the nightly build via Homebrew:
82+
83+
```bash
84+
brew install docker/tap/ds@nightly
85+
```
86+
87+
For other platforms, download the artifacts from the nightly release page and
88+
follow the manual install instructions above.
89+
90+
# Feedback
91+
92+
If you run into issues or have feedback, please
93+
[open an issue](https://github.com/docker/sbx-releases/issues) on this repository.
94+
3395
# Learn more
34-
[Docs​​​​​​​​​​​​​​​​](https://docs.docker.com/ai/sandboxes/)
96+
97+
[Docs](https://docs.docker.com/ai/sandboxes/)
3598

3699
# License
100+
37101
Proprietary — Docker Inc.
38102
[LICENSE](https://github.com/docker/sbx-releases/blob/HEAD/LICENSE)

0 commit comments

Comments
 (0)