chore: update snapshot

This commit is contained in:
Krishav Raj Singh 2025-08-24 02:05:25 +05:30
parent 8a96bb2ed4
commit f8dc2f970c
5 changed files with 8 additions and 8 deletions

View File

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

View File

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

View File

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

View File

@ -127,8 +127,8 @@ As part of the setup, you'll need to:
1. Create a Daytona account 1. Create a Daytona account
2. Generate an API key 2. Generate an API key
3. Create a Snapshot: 3. Create a Snapshot:
- Name: `kortix/suna:0.1.3.10` - Name: `kortix/suna:0.1.3.11`
- Image name: `kortix/suna:0.1.3.10` - Image name: `kortix/suna:0.1.3.11`
- Entrypoint: `/usr/bin/supervisord -n -c /etc/supervisor/conf.d/supervisord.conf` - Entrypoint: `/usr/bin/supervisord -n -c /etc/supervisor/conf.d/supervisord.conf`
## Manual Configuration ## Manual Configuration

View File

@ -669,8 +669,8 @@ class SetupWizard:
f"Visit {Colors.GREEN}https://app.daytona.io/dashboard/snapshots{Colors.ENDC}{Colors.CYAN} to create a snapshot." f"Visit {Colors.GREEN}https://app.daytona.io/dashboard/snapshots{Colors.ENDC}{Colors.CYAN} to create a snapshot."
) )
print_info("Create a snapshot with these exact settings:") print_info("Create a snapshot with these exact settings:")
print_info(f" - Name:\t\t{Colors.GREEN}kortix/suna:0.1.3.10{Colors.ENDC}") print_info(f" - Name:\t\t{Colors.GREEN}kortix/suna:0.1.3.11{Colors.ENDC}")
print_info(f" - Snapshot name:\t{Colors.GREEN}kortix/suna:0.1.3.10{Colors.ENDC}") print_info(f" - Snapshot name:\t{Colors.GREEN}kortix/suna:0.1.3.11{Colors.ENDC}")
print_info( print_info(
f" - Entrypoint:\t{Colors.GREEN}/usr/bin/supervisord -n -c /etc/supervisor/conf.d/supervisord.conf{Colors.ENDC}" f" - Entrypoint:\t{Colors.GREEN}/usr/bin/supervisord -n -c /etc/supervisor/conf.d/supervisord.conf{Colors.ENDC}"
) )