This commit is contained in:
marko-kraemer 2025-04-21 04:30:09 +01:00
parent 08110738d6
commit 48e8c0ffa9
1 changed files with 4 additions and 5 deletions

View File

@ -97,7 +97,7 @@ def create_sandbox(password: str):
sandbox = daytona.create(CreateSandboxParams( sandbox = daytona.create(CreateSandboxParams(
image="adamcohenhillel/kortix-suna:0.0.16", image="adamcohenhillel/kortix-suna:0.0.16",
public=False, public=True,
env_vars={ env_vars={
"CHROME_PERSISTENT_SESSION": "true", "CHROME_PERSISTENT_SESSION": "true",
"RESOLUTION": "1280x720x24", "RESOLUTION": "1280x720x24",
@ -112,11 +112,10 @@ def create_sandbox(password: str):
"CHROME_CDP": "" "CHROME_CDP": ""
}, },
ports=[ ports=[
# 7788, # Gradio default port
6080, # noVNC web interface 6080, # noVNC web interface
# 5900, # VNC port 5900, # VNC port
# 5901, # VNC port 5901, # VNC port
# 9222, # Chrome remote debugging port 9222, # Chrome remote debugging port
8080 # HTTP website port 8080 # HTTP website port
] ]
)) ))