backend/core/sandbox/README.md
This directory contains the agent sandbox implementation - a Docker-based virtual environment that agents use as their own computer to execute tasks, access the web, and manipulate files.
The sandbox provides a complete containerized Linux environment with:
You can modify the sandbox environment for development or to add new capabilities:
docker/ directorycd backend/sandbox/docker
docker compose build
docker push kortix/suna:0.1.3.30
To use your custom sandbox snapshot:
image parameter in docker-compose.yml (that defines the image name kortix/suna:___)backend/sandbox/sandbox.py in the create_sandbox functionWhen publishing a new version of the sandbox:
docker-compose.yml (e.g., from 0.1.2 to 0.1.3)docker compose builddocker push kortix/suna:0.1.3backend/utils/config.py