Skip to content

Commit 92b40c0

Browse files
committed
README: Add notes about Zephyr 3.7 LTS
This commit adds notes about retrieving the correct version of Docker image for the Zephyr 3.7 LTS. Signed-off-by: Stephanos Ioannidis <[email protected]>
1 parent d8c0688 commit 92b40c0

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

README.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,40 @@ building most Zephyr targets.
2727
The pre-built developer docker image is available on both GitHub Container Registry (`ghcr.io`) and
2828
DockerHub (`docker.io`).
2929

30-
**GitHub Container Registry (`ghcr.io`)**
30+
For Zephyr 3.7 LTS, use the `v0.26-branch` or the latest `v0.26.x` release Docker image.
31+
32+
##### GitHub Container Registry (`ghcr.io`)
33+
34+
###### Current Zephyr versions
3135

3236
```
3337
docker run -ti -v $HOME/Work/zephyrproject:/workdir \
3438
ghcr.io/zephyrproject-rtos/zephyr-build:main
3539
```
3640

37-
**DockerHub (`docker.io`)**
41+
###### Zephyr 3.7 LTS
42+
43+
```
44+
docker run -ti -v $HOME/Work/zephyrproject:/workdir \
45+
ghcr.io/zephyrproject-rtos/zephyr-build:v0.26-branch
46+
```
47+
48+
##### DockerHub (`docker.io`)
49+
50+
###### Current Zephyr versions
3851

3952
```
4053
docker run -ti -v $HOME/Work/zephyrproject:/workdir \
4154
docker.io/zephyrprojectrtos/zephyr-build:main
4255
```
4356

57+
###### Zephyr 3.7 LTS
58+
59+
```
60+
docker run -ti -v $HOME/Work/zephyrproject:/workdir \
61+
docker.io/zephyrprojectrtos/zephyr-build:v0.26-branch
62+
```
63+
4464
#### Building Developer Docker Image
4565

4666
The developer docker image can be built using the following command:

0 commit comments

Comments
 (0)