fix: separate install commands into individual code blocks

Allows each curl command to be copied independently without the
comment line.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
gavrielc
2026-03-13 11:48:10 +02:00
parent 48d352a142
commit 49595b9c70

View File

@@ -18,11 +18,13 @@
<h2>🐳 Now Running in Docker Sandboxes</h2> <h2>🐳 Now Running in Docker Sandboxes</h2>
<p>Every agent gets its own isolated container inside a micro VM.<br>Hypervisor-level isolation. Millisecond startup. No complex setup.</p> <p>Every agent gets its own isolated container inside a micro VM.<br>Hypervisor-level isolation. Millisecond startup. No complex setup.</p>
**macOS (Apple Silicon)**
```bash ```bash
# macOS (Apple Silicon)
curl -fsSL https://nanoclaw.dev/install-docker-sandboxes.sh | bash curl -fsSL https://nanoclaw.dev/install-docker-sandboxes.sh | bash
```
# Windows (WSL) **Windows (WSL)**
```bash
curl -fsSL https://nanoclaw.dev/install-docker-sandboxes-windows.sh | bash curl -fsSL https://nanoclaw.dev/install-docker-sandboxes-windows.sh | bash
``` ```