update snapshot

This commit is contained in:
Krishav Raj Singh 2025-09-08 09:41:46 +05:30
parent 2ad28d5bfb
commit db4b70bf5d
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.13
docker push kortix/suna:0.1.3.14
```
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.13
image: kortix/suna:0.1.3.14
ports:
- "6080:6080" # noVNC web interface
- "5901:5901" # VNC port

View File

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

View File

@ -686,9 +686,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.13{Colors.ENDC}")
f" - Name:\t\t{Colors.GREEN}kortix/suna:0.1.3.14{Colors.ENDC}")
print_info(
f" - Snapshot name:\t{Colors.GREEN}kortix/suna:0.1.3.13{Colors.ENDC}")
f" - Snapshot name:\t{Colors.GREEN}kortix/suna:0.1.3.14{Colors.ENDC}")
print_info(
f" - Entrypoint:\t{Colors.GREEN}/usr/bin/supervisord -n -c /etc/supervisor/conf.d/supervisord.conf{Colors.ENDC}"
)