Skip to content

Commit ea2f386

Browse files
committed
Release 0.40.0
1 parent b5f2a04 commit ea2f386

File tree

24 files changed

+55
-55
lines changed

24 files changed

+55
-55
lines changed

Development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ poetry run pytest ./tests/unit/test_*.py
136136
To reduce build time (e.g., if no changes were made to the client-runtime component), you can use an existing Docker
137137
container image by setting the SANDBOX_RUNTIME_CONTAINER_IMAGE environment variable to the desired Docker image.
138138

139-
Example: `export SANDBOX_RUNTIME_CONTAINER_IMAGE=ghcr.io/all-hands-ai/runtime:0.39-nikolaik`
139+
Example: `export SANDBOX_RUNTIME_CONTAINER_IMAGE=ghcr.io/all-hands-ai/runtime:0.40-nikolaik`
140140

141141
## Develop inside Docker container
142142

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,17 @@ system requirements and more information.
5151
5252

5353
```bash
54-
docker pull docker.all-hands.dev/all-hands-ai/runtime:0.39-nikolaik
54+
docker pull docker.all-hands.dev/all-hands-ai/runtime:0.40-nikolaik
5555

5656
docker run -it --rm --pull=always \
57-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.39-nikolaik \
57+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.40-nikolaik \
5858
-e LOG_ALL_EVENTS=true \
5959
-v /var/run/docker.sock:/var/run/docker.sock \
6060
-v ~/.openhands-state:/.openhands-state \
6161
-p 3000:3000 \
6262
--add-host host.docker.internal:host-gateway \
6363
--name openhands-app \
64-
docker.all-hands.dev/all-hands-ai/openhands:0.39
64+
docker.all-hands.dev/all-hands-ai/openhands:0.40
6565
```
6666

6767
You'll find OpenHands running at [http://localhost:3000](http://localhost:3000)!

README_CN.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,17 @@ OpenHands也可以使用Docker在本地系统上运行。
5151
5252

5353
```bash
54-
docker pull docker.all-hands.dev/all-hands-ai/runtime:0.39-nikolaik
54+
docker pull docker.all-hands.dev/all-hands-ai/runtime:0.40-nikolaik
5555

5656
docker run -it --rm --pull=always \
57-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.39-nikolaik \
57+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.40-nikolaik \
5858
-e LOG_ALL_EVENTS=true \
5959
-v /var/run/docker.sock:/var/run/docker.sock \
6060
-v ~/.openhands-state:/.openhands-state \
6161
-p 3000:3000 \
6262
--add-host host.docker.internal:host-gateway \
6363
--name openhands-app \
64-
docker.all-hands.dev/all-hands-ai/openhands:0.39
64+
docker.all-hands.dev/all-hands-ai/openhands:0.40
6565
```
6666

6767
您将在[http://localhost:3000](http://localhost:3000)找到运行中的OpenHands!

containers/dev/compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ services:
1111
- BACKEND_HOST=${BACKEND_HOST:-"0.0.0.0"}
1212
- SANDBOX_API_HOSTNAME=host.docker.internal
1313
#
14-
- SANDBOX_RUNTIME_CONTAINER_IMAGE=${SANDBOX_RUNTIME_CONTAINER_IMAGE:-ghcr.io/all-hands-ai/runtime:0.39-nikolaik}
14+
- SANDBOX_RUNTIME_CONTAINER_IMAGE=${SANDBOX_RUNTIME_CONTAINER_IMAGE:-ghcr.io/all-hands-ai/runtime:0.40-nikolaik}
1515
- SANDBOX_USER_ID=${SANDBOX_USER_ID:-1234}
1616
- WORKSPACE_MOUNT_PATH=${WORKSPACE_BASE:-$PWD/workspace}
1717
ports:

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
image: openhands:latest
88
container_name: openhands-app-${DATE:-}
99
environment:
10-
- SANDBOX_RUNTIME_CONTAINER_IMAGE=${SANDBOX_RUNTIME_CONTAINER_IMAGE:-docker.all-hands.dev/all-hands-ai/runtime:0.39-nikolaik}
10+
- SANDBOX_RUNTIME_CONTAINER_IMAGE=${SANDBOX_RUNTIME_CONTAINER_IMAGE:-docker.all-hands.dev/all-hands-ai/runtime:0.40-nikolaik}
1111
#- SANDBOX_USER_ID=${SANDBOX_USER_ID:-1234} # enable this only if you want a specific non-root sandbox user but you will have to manually adjust permissions of openhands-state for this user
1212
- WORKSPACE_MOUNT_PATH=${WORKSPACE_BASE:-$PWD/workspace}
1313
ports:

docs/i18n/fr/docusaurus-plugin-content-docs/current/usage/how-to/cli-mode.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Pour exécuter OpenHands en mode CLI avec Docker :
3737
```bash
3838
docker run -it \
3939
--pull=always \
40-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.39-nikolaik \
40+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.40-nikolaik \
4141
-e SANDBOX_USER_ID=$(id -u) \
4242
-e SANDBOX_VOLUMES=$SANDBOX_VOLUMES \
4343
-e LLM_API_KEY=$LLM_API_KEY \
@@ -46,7 +46,7 @@ docker run -it \
4646
-v ~/.openhands-state:/.openhands-state \
4747
--add-host host.docker.internal:host-gateway \
4848
--name openhands-app-$(date +%Y%m%d%H%M%S) \
49-
docker.all-hands.dev/all-hands-ai/openhands:0.39 \
49+
docker.all-hands.dev/all-hands-ai/openhands:0.40 \
5050
python -m openhands.core.cli
5151
```
5252

docs/i18n/fr/docusaurus-plugin-content-docs/current/usage/how-to/headless-mode.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Pour exécuter OpenHands en mode Headless avec Docker :
3434
```bash
3535
docker run -it \
3636
--pull=always \
37-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.39-nikolaik \
37+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.40-nikolaik \
3838
-e SANDBOX_USER_ID=$(id -u) \
3939
-e SANDBOX_VOLUMES=$SANDBOX_VOLUMES \
4040
-e LLM_API_KEY=$LLM_API_KEY \
@@ -44,7 +44,7 @@ docker run -it \
4444
-v ~/.openhands-state:/.openhands-state \
4545
--add-host host.docker.internal:host-gateway \
4646
--name openhands-app-$(date +%Y%m%d%H%M%S) \
47-
docker.all-hands.dev/all-hands-ai/openhands:0.39 \
47+
docker.all-hands.dev/all-hands-ai/openhands:0.40 \
4848
python -m openhands.core.main -t "write a bash script that prints hi"
4949
```
5050

docs/i18n/fr/docusaurus-plugin-content-docs/current/usage/installation.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,17 @@ Un système avec un processeur moderne et un minimum de **4 Go de RAM** est reco
5858
La façon la plus simple d'exécuter OpenHands est dans Docker.
5959

6060
```bash
61-
docker pull docker.all-hands.dev/all-hands-ai/runtime:0.39-nikolaik
61+
docker pull docker.all-hands.dev/all-hands-ai/runtime:0.40-nikolaik
6262

6363
docker run -it --rm --pull=always \
64-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.39-nikolaik \
64+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.40-nikolaik \
6565
-e LOG_ALL_EVENTS=true \
6666
-v /var/run/docker.sock:/var/run/docker.sock \
6767
-v ~/.openhands-state:/.openhands-state \
6868
-p 3000:3000 \
6969
--add-host host.docker.internal:host-gateway \
7070
--name openhands-app \
71-
docker.all-hands.dev/all-hands-ai/openhands:0.39
71+
docker.all-hands.dev/all-hands-ai/openhands:0.40
7272
```
7373

7474
Vous trouverez OpenHands en cours d'exécution à l'adresse http://localhost:3000 !

docs/i18n/ja/docusaurus-plugin-content-docs/current/usage/how-to/cli-mode.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ DockerでOpenHandsをCLIモードで実行するには:
3636
```bash
3737
docker run -it \
3838
--pull=always \
39-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.39-nikolaik \
39+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.40-nikolaik \
4040
-e SANDBOX_USER_ID=$(id -u) \
4141
-e SANDBOX_VOLUMES=$SANDBOX_VOLUMES \
4242
-e LLM_API_KEY=$LLM_API_KEY \
@@ -45,7 +45,7 @@ docker run -it \
4545
-v ~/.openhands-state:/.openhands-state \
4646
--add-host host.docker.internal:host-gateway \
4747
--name openhands-app-$(date +%Y%m%d%H%M%S) \
48-
docker.all-hands.dev/all-hands-ai/openhands:0.39 \
48+
docker.all-hands.dev/all-hands-ai/openhands:0.40 \
4949
python -m openhands.core.cli
5050
```
5151

docs/i18n/ja/docusaurus-plugin-content-docs/current/usage/how-to/headless-mode.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ DockerでヘッドレスモードでOpenHandsを実行するには:
3333
```bash
3434
docker run -it \
3535
--pull=always \
36-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.39-nikolaik \
36+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.40-nikolaik \
3737
-e SANDBOX_USER_ID=$(id -u) \
3838
-e SANDBOX_VOLUMES=$SANDBOX_VOLUMES \
3939
-e LLM_API_KEY=$LLM_API_KEY \
@@ -43,7 +43,7 @@ docker run -it \
4343
-v ~/.openhands-state:/.openhands-state \
4444
--add-host host.docker.internal:host-gateway \
4545
--name openhands-app-$(date +%Y%m%d%H%M%S) \
46-
docker.all-hands.dev/all-hands-ai/openhands:0.39 \
46+
docker.all-hands.dev/all-hands-ai/openhands:0.40 \
4747
python -m openhands.core.main -t "write a bash script that prints hi"
4848
```
4949

0 commit comments

Comments
 (0)