From 6d944bdd7efe8b5f19384bf35846f4a385740f7b Mon Sep 17 00:00:00 2001 From: sharath <29162020+tnfssc@users.noreply.github.com> Date: Mon, 2 Jun 2025 10:42:33 +0000 Subject: [PATCH] chore(setup): update Docker image version to 0.1.3 in setup.py, README, and configuration files --- backend/sandbox/README.md | 2 +- backend/sandbox/docker/docker-compose.yml | 2 +- backend/utils/config.py | 2 +- docs/SELF-HOSTING.md | 2 +- setup.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/backend/sandbox/README.md b/backend/sandbox/README.md index 0be85940..565a770f 100644 --- a/backend/sandbox/README.md +++ b/backend/sandbox/README.md @@ -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.2 + docker push kortix/suna:0.1.3 ``` 3. Test your changes locally using docker-compose diff --git a/backend/sandbox/docker/docker-compose.yml b/backend/sandbox/docker/docker-compose.yml index 557fbaea..7b6646ab 100644 --- a/backend/sandbox/docker/docker-compose.yml +++ b/backend/sandbox/docker/docker-compose.yml @@ -6,7 +6,7 @@ services: dockerfile: ${DOCKERFILE:-Dockerfile} args: TARGETPLATFORM: ${TARGETPLATFORM:-linux/amd64} - image: kortix/suna:0.1.2.8 + image: kortix/suna:0.1.3 ports: - "6080:6080" # noVNC web interface - "5901:5901" # VNC port diff --git a/backend/utils/config.py b/backend/utils/config.py index 9f499d37..f22e1898 100644 --- a/backend/utils/config.py +++ b/backend/utils/config.py @@ -159,7 +159,7 @@ class Configuration: STRIPE_PRODUCT_ID_STAGING: str = 'prod_SCgIj3G7yPOAWY' # Sandbox configuration - SANDBOX_IMAGE_NAME = "tnfssc/suna-sandbox:beta" + SANDBOX_IMAGE_NAME = "kortix/suna:0.1.3" SANDBOX_ENTRYPOINT = "/usr/bin/supervisord -n -c /etc/supervisor/conf.d/supervisord.conf" # LangFuse configuration diff --git a/docs/SELF-HOSTING.md b/docs/SELF-HOSTING.md index 32f09f52..00942744 100644 --- a/docs/SELF-HOSTING.md +++ b/docs/SELF-HOSTING.md @@ -115,7 +115,7 @@ As part of the setup, you'll need to: 1. Create a Daytona account 2. Generate an API key 3. Create a Docker image: - - Image name: `kortix/suna:0.1.2.8` + - Image name: `kortix/suna:0.1.3` - Entrypoint: `/usr/bin/supervisord -n -c /etc/supervisor/conf.d/supervisord.conf` ## Manual Configuration diff --git a/setup.py b/setup.py index f28c092d..7c7846dc 100644 --- a/setup.py +++ b/setup.py @@ -197,7 +197,7 @@ def collect_daytona_info(): print_info("Then, generate an API key from 'Keys' menu") print_info("After that, go to Images (https://app.daytona.io/dashboard/images)") print_info("Click '+ Create Image'") - print_info(f"Enter 'kortix/suna:0.1.2.8' as the image name") + print_info(f"Enter 'kortix/suna:0.1.3' as the image name") print_info(f"Set '/usr/bin/supervisord -n -c /etc/supervisor/conf.d/supervisord.conf' as the Entrypoint") input("Press Enter to continue once you've completed these steps...")