chore(setup): update Docker image version to 0.1.3 in setup.py, README, and configuration files

This commit is contained in:
sharath 2025-06-02 10:42:33 +00:00
parent 172e95c248
commit 6d944bdd7e
No known key found for this signature in database
5 changed files with 5 additions and 5 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.2
docker push kortix/suna:0.1.3
```
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.2.8
image: kortix/suna:0.1.3
ports:
- "6080:6080" # noVNC web interface
- "5901:5901" # VNC port

View File

@ -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

View File

@ -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

View File

@ -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...")