mirror of https://github.com/kortix-ai/suna.git
update snapshot
This commit is contained in:
parent
ac3441c2bd
commit
1150a0ff4d
|
@ -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.15
|
docker push kortix/suna:0.1.3.16
|
||||||
```
|
```
|
||||||
3. Test your changes locally using docker-compose
|
3. Test your changes locally using docker-compose
|
||||||
|
|
||||||
|
|
|
@ -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.15
|
image: kortix/suna:0.1.3.16
|
||||||
ports:
|
ports:
|
||||||
- "6080:6080" # noVNC web interface
|
- "6080:6080" # noVNC web interface
|
||||||
- "5901:5901" # VNC port
|
- "5901:5901" # VNC port
|
||||||
|
|
|
@ -309,8 +309,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.15"
|
SANDBOX_IMAGE_NAME = "kortix/suna:0.1.3.16"
|
||||||
SANDBOX_SNAPSHOT_NAME = "kortix/suna:0.1.3.15"
|
SANDBOX_SNAPSHOT_NAME = "kortix/suna:0.1.3.16"
|
||||||
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
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -686,9 +686,9 @@ class SetupWizard:
|
||||||
)
|
)
|
||||||
print_info("Create a snapshot with these exact settings:")
|
print_info("Create a snapshot with these exact settings:")
|
||||||
print_info(
|
print_info(
|
||||||
f" - Name:\t\t{Colors.GREEN}kortix/suna:0.1.3.15{Colors.ENDC}")
|
f" - Name:\t\t{Colors.GREEN}kortix/suna:0.1.3.16{Colors.ENDC}")
|
||||||
print_info(
|
print_info(
|
||||||
f" - Snapshot name:\t{Colors.GREEN}kortix/suna:0.1.3.15{Colors.ENDC}")
|
f" - Snapshot name:\t{Colors.GREEN}kortix/suna:0.1.3.16{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}"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue