Skip to content

Commit 315cb7d

Browse files
authored
OpenHands Release V1 (#189)
1 parent 468bb0a commit 315cb7d

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

openhands/usage/llms/local-llms.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,23 +68,23 @@ Download and install the LM Studio desktop app from [lmstudio.ai](https://lmstud
6868
1. Check [the installation guide](/openhands/usage/run-openhands/local-setup) and ensure all prerequisites are met before running OpenHands, then run:
6969

7070
```bash
71-
docker pull docker.openhands.dev/openhands/runtime:0.62-nikolaik
71+
docker pull docker.openhands.dev/openhands/runtime:1.0-nikolaik
7272

7373
docker run -it --rm --pull=always \
74-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.openhands.dev/openhands/runtime:0.62-nikolaik \
74+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.openhands.dev/openhands/runtime:1.0-nikolaik \
7575
-e LOG_ALL_EVENTS=true \
7676
-v /var/run/docker.sock:/var/run/docker.sock \
7777
-v ~/.openhands:/.openhands \
7878
-p 3000:3000 \
7979
--add-host host.docker.internal:host-gateway \
8080
--name openhands-app \
81-
docker.openhands.dev/openhands/openhands:0.62
81+
docker.openhands.dev/openhands/openhands:1.0
8282
```
8383

8484
2. Wait until the server is running (see log below):
8585
```
8686
Digest: sha256:e72f9baecb458aedb9afc2cd5bc935118d1868719e55d50da73190d3a85c674f
87-
Status: Image is up to date for docker.openhands.dev/openhands/openhands:0.62
87+
Status: Image is up to date for docker.openhands.dev/openhands/openhands:1.0
8888
Starting OpenHands...
8989
Running OpenHands as root
9090
14:22:13 - openhands:INFO: server_config.py:50 - Using config class None

openhands/usage/run-openhands/cli-mode.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ configuration format has changed.
8989
```bash
9090
docker run -it \
9191
--pull=always \
92-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.openhands.dev/openhands/runtime:0.62-nikolaik \
92+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.openhands.dev/openhands/runtime:1.0-nikolaik \
9393
-e SANDBOX_USER_ID=$(id -u) \
9494
-e SANDBOX_VOLUMES=$SANDBOX_VOLUMES \
9595
-v /var/run/docker.sock:/var/run/docker.sock \

openhands/usage/run-openhands/headless-mode.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export GITHUB_TOKEN="your-token" # Required for repository operations
6161
# Run OpenHands
6262
docker run -it \
6363
--pull=always \
64-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.openhands.dev/openhands/runtime:0.62-nikolaik \
64+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.openhands.dev/openhands/runtime:1.0-nikolaik \
6565
-e SANDBOX_USER_ID=$(id -u) \
6666
-e SANDBOX_VOLUMES=$SANDBOX_VOLUMES \
6767
-e LLM_API_KEY=$LLM_API_KEY \
@@ -73,7 +73,7 @@ docker run -it \
7373
-v ~/.openhands:/.openhands \
7474
--add-host host.docker.internal:host-gateway \
7575
--name openhands-app-$(date +%Y%m%d%H%M%S) \
76-
docker.openhands.dev/openhands/openhands:0.62 \
76+
docker.openhands.dev/openhands/openhands:1.0 \
7777
python -m openhands.core.main -t "write a bash script that prints hi"
7878
```
7979

openhands/usage/run-openhands/local-setup.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,17 +121,17 @@ Note that you'll still need `uv` installed for the default MCP servers to work p
121121
<Accordion title="Docker Command (Click to expand)">
122122

123123
```bash
124-
docker pull docker.openhands.dev/openhands/runtime:0.62-nikolaik
124+
docker pull docker.openhands.dev/openhands/runtime:1.0-nikolaik
125125

126126
docker run -it --rm --pull=always \
127-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.openhands.dev/openhands/runtime:0.62-nikolaik \
127+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.openhands.dev/openhands/runtime:1.0-nikolaik \
128128
-e LOG_ALL_EVENTS=true \
129129
-v /var/run/docker.sock:/var/run/docker.sock \
130130
-v ~/.openhands:/.openhands \
131131
-p 3000:3000 \
132132
--add-host host.docker.internal:host-gateway \
133133
--name openhands-app \
134-
docker.openhands.dev/openhands/openhands:0.62
134+
docker.openhands.dev/openhands/openhands:1.0
135135
```
136136

137137
</Accordion>

0 commit comments

Comments
 (0)