update sandbox

This commit is contained in:
Krishav Raj Singh 2025-10-08 15:34:06 +05:30
parent 9a2ae7e09a
commit c9c07c4860
4 changed files with 6 additions and 6 deletions

View File

@ -20,7 +20,7 @@ You can modify the sandbox environment for development or to add new capabilitie
```
cd backend/sandbox/docker
docker compose build
docker push kortix/suna:0.1.3.20
docker push kortix/suna:0.1.3.21
```
3. Test your changes locally using docker-compose

View File

@ -6,7 +6,7 @@ services:
dockerfile: ${DOCKERFILE:-Dockerfile}
args:
TARGETPLATFORM: ${TARGETPLATFORM:-linux/amd64}
image: kortix/suna:0.1.3.20
image: kortix/suna:0.1.3.21
ports:
- "6080:6080" # noVNC web interface
- "5901:5901" # VNC port

View File

@ -308,8 +308,8 @@ class Configuration:
STRIPE_PRODUCT_ID_STAGING: str = 'prod_SCgIj3G7yPOAWY'
# Sandbox configuration
SANDBOX_IMAGE_NAME = "kortix/suna:0.1.3.20"
SANDBOX_SNAPSHOT_NAME = "kortix/suna:0.1.3.20"
SANDBOX_IMAGE_NAME = "kortix/suna:0.1.3.21"
SANDBOX_SNAPSHOT_NAME = "kortix/suna:0.1.3.21"
SANDBOX_ENTRYPOINT = "/usr/bin/supervisord -n -c /etc/supervisor/conf.d/supervisord.conf"
# LangFuse configuration

View File

@ -687,9 +687,9 @@ class SetupWizard:
)
print_info("Create a snapshot with these exact settings:")
print_info(
f" - Name:\t\t{Colors.GREEN}kortix/suna:0.1.3.20{Colors.ENDC}")
f" - Name:\t\t{Colors.GREEN}kortix/suna:0.1.3.21{Colors.ENDC}")
print_info(
f" - Snapshot name:\t{Colors.GREEN}kortix/suna:0.1.3.20{Colors.ENDC}")
f" - Snapshot name:\t{Colors.GREEN}kortix/suna:0.1.3.21{Colors.ENDC}")
print_info(
f" - Entrypoint:\t{Colors.GREEN}/usr/bin/supervisord -n -c /etc/supervisor/conf.d/supervisord.conf{Colors.ENDC}"
)