https://github.com/dockersamples/labspace-sbx-quickstart
https://github.com/dockersamples/labspace-sbx-quickstart
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dockersamples/labspace-sbx-quickstart
- Owner: dockersamples
- License: apache-2.0
- Created: 2026-04-30T21:10:04.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-05-05T14:05:06.000Z (about 2 months ago)
- Last Synced: 2026-05-05T16:11:41.170Z (about 2 months ago)
- Language: Python
- Size: 57.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Labspace for Docker Sandboxes (sbx)
An interactive lab to learn about Docker Sandboxes - the microVM-based agent environment built by Docker.

## Prerequisites
- [Docker Desktop](https://www.docker.com/products/docker-desktop/)
- [sbx](https://docs.docker.com/ai/sandboxes/)
- [GitHub CLI](https://cli.github.com/)
**Special note:** this lab requires the usage of the Labspace Compose provider, which isn't yet available publicly. Stay tuned though, as it will be coming soon!
## Quick Start
```bash
docker labspace launch dockersamples/labspace-sbx-quickstart
```
Open http://localhost:3030
## Contributing
If you find something wrong or something that needs to be updated, feel free to submit a PR. If you want to make a larger change, feel free to fork the repo into your own repository.
**Important note:** If you fork it, you will need to update the GHA workflow to point to your own Hub repo.
1. Clone this repo
2. Start the Labspace in content development mode:
```bash
# On Mac/Linux
CONTENT_PATH=$PWD docker compose up --watch
# On Windows with PowerShell
$Env:CONTENT_PATH = (Get-Location).Path; docker compose up --watch
```
3. Open the Labspace at http://localhost:3030.
4. Make the necessary changes and validate they appear as you expect in the Labspace
Be sure to check out the [docs](https://github.com/dockersamples/labspace-infra/tree/main/docs) for additional information and guidelines.
5. When done, make sure to run a `docker compose down` to completely tear everything down:
```bash
# On Mac/Linux
CONTENT_PATH=$PWD docker compose up --watch
# On Windows with PowerShell
$Env:CONTENT_PATH = (Get-Location).Path; docker compose up --watch
```