diff --git a/openhands/usage/cli/installation.mdx b/openhands/usage/cli/installation.mdx index c6d9fddb..5d6159c7 100644 --- a/openhands/usage/cli/installation.mdx +++ b/openhands/usage/cli/installation.mdx @@ -65,8 +65,8 @@ description: Install the OpenHands CLI on your system ```bash docker run -it \ --pull=always \ - -e AGENT_SERVER_IMAGE_REPOSITORY=docker.openhands.dev/openhands/runtime \ - -e AGENT_SERVER_IMAGE_TAG=1.2-nikolaik \ + -e AGENT_SERVER_IMAGE_REPOSITORY=ghcr.io/openhands/agent-server \ + -e AGENT_SERVER_IMAGE_TAG=1.10.0-python \ -e SANDBOX_USER_ID=$(id -u) \ -e SANDBOX_VOLUMES=$SANDBOX_VOLUMES \ -v /var/run/docker.sock:/var/run/docker.sock \ diff --git a/openhands/usage/environment-variables.mdx b/openhands/usage/environment-variables.mdx index 82887738..e080c3b9 100644 --- a/openhands/usage/environment-variables.mdx +++ b/openhands/usage/environment-variables.mdx @@ -107,8 +107,8 @@ These variables correspond to the `[sandbox]` section in `config.toml`: | `SANDBOX_RUNTIME_STARTUP_ENV_VARS` | dict | `{}` | Environment variables for runtime | | `SANDBOX_BROWSERGYM_EVAL_ENV` | string | `""` | BrowserGym evaluation environment | | `SANDBOX_VOLUMES` | string | `""` | Volume mounts (replaces deprecated workspace settings) | -| `AGENT_SERVER_IMAGE_REPOSITORY` | string | `""` | Runtime container image repository (e.g., `docker.openhands.dev/openhands/runtime`) | -| `AGENT_SERVER_IMAGE_TAG` | string | `""` | Runtime container image tag (e.g., `1.2-nikolaik`) | +| `AGENT_SERVER_IMAGE_REPOSITORY` | string | `""` | Runtime container image repository (e.g., `ghcr.io/openhands/agent-server`) | +| `AGENT_SERVER_IMAGE_TAG` | string | `""` | Runtime container image tag (e.g., `1.10.0-python`) | | `SANDBOX_KEEP_RUNTIME_ALIVE` | boolean | `false` | Keep runtime alive after session ends | | `SANDBOX_PAUSE_CLOSED_RUNTIMES` | boolean | `false` | Pause instead of stopping closed runtimes | | `SANDBOX_CLOSE_DELAY` | integer | `300` | Delay before closing idle runtimes (seconds) | diff --git a/openhands/usage/llms/local-llms.mdx b/openhands/usage/llms/local-llms.mdx index 74da18f4..514207b4 100644 --- a/openhands/usage/llms/local-llms.mdx +++ b/openhands/usage/llms/local-llms.mdx @@ -68,24 +68,22 @@ Download and install the LM Studio desktop app from [lmstudio.ai](https://lmstud 1. Check [the installation guide](/openhands/usage/run-openhands/local-setup) and ensure all prerequisites are met before running OpenHands, then run: ```bash -docker pull docker.openhands.dev/openhands/runtime:1.2-nikolaik - docker run -it --rm --pull=always \ - -e AGENT_SERVER_IMAGE_REPOSITORY=docker.openhands.dev/openhands/runtime \ - -e AGENT_SERVER_IMAGE_TAG=1.2-nikolaik \ + -e AGENT_SERVER_IMAGE_REPOSITORY=ghcr.io/openhands/agent-server \ + -e AGENT_SERVER_IMAGE_TAG=1.10.0-python \ -e LOG_ALL_EVENTS=true \ -v /var/run/docker.sock:/var/run/docker.sock \ -v ~/.openhands:/.openhands \ -p 3000:3000 \ --add-host host.docker.internal:host-gateway \ --name openhands-app \ - docker.openhands.dev/openhands/openhands:1.2 + docker.openhands.dev/openhands/openhands:1.3 ``` 2. Wait until the server is running (see log below): ``` Digest: sha256:e72f9baecb458aedb9afc2cd5bc935118d1868719e55d50da73190d3a85c674f -Status: Image is up to date for docker.openhands.dev/openhands/openhands:1.2 +Status: Image is up to date for docker.openhands.dev/openhands/openhands:1.3 Starting OpenHands... Running OpenHands as root 14:22:13 - openhands:INFO: server_config.py:50 - Using config class None diff --git a/openhands/usage/run-openhands/local-setup.mdx b/openhands/usage/run-openhands/local-setup.mdx index 4fed0501..f4bea61d 100644 --- a/openhands/usage/run-openhands/local-setup.mdx +++ b/openhands/usage/run-openhands/local-setup.mdx @@ -130,7 +130,7 @@ docker run -it --rm --pull=always \ -p 3000:3000 \ --add-host host.docker.internal:host-gateway \ --name openhands-app \ - docker.openhands.dev/openhands/openhands:1.2 + docker.openhands.dev/openhands/openhands:1.3 ``` diff --git a/openhands/usage/troubleshooting/troubleshooting.mdx b/openhands/usage/troubleshooting/troubleshooting.mdx index 6db60848..a29cf30f 100644 --- a/openhands/usage/troubleshooting/troubleshooting.mdx +++ b/openhands/usage/troubleshooting/troubleshooting.mdx @@ -86,8 +86,8 @@ To fix this: ```bash docker run -it --rm \ -e SANDBOX_VSCODE_PORT=41234 \ - -e AGENT_SERVER_IMAGE_REPOSITORY=docker.openhands.dev/openhands/runtime \ - -e AGENT_SERVER_IMAGE_TAG=latest \ + -e AGENT_SERVER_IMAGE_REPOSITORY=ghcr.io/openhands/agent-server \ + -e AGENT_SERVER_IMAGE_TAG=1.10.0-python \ -v /var/run/docker.sock:/var/run/docker.sock \ -v ~/.openhands:/.openhands \ -p 3000:3000 \