Skip to content

Commit

Permalink
README: Add notes about Zephyr 3.7 LTS
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
stephanosio committed Oct 17, 2024
1 parent d8c0688 commit 92b40c0
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,40 @@ building most Zephyr targets.
The pre-built developer docker image is available on both GitHub Container Registry (`ghcr.io`) and
DockerHub (`docker.io`).

**GitHub Container Registry (`ghcr.io`)**
For Zephyr 3.7 LTS, use the `v0.26-branch` or the latest `v0.26.x` release Docker image.

##### GitHub Container Registry (`ghcr.io`)

###### Current Zephyr versions

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

**DockerHub (`docker.io`)**
###### Zephyr 3.7 LTS

```
docker run -ti -v $HOME/Work/zephyrproject:/workdir \
ghcr.io/zephyrproject-rtos/zephyr-build:v0.26-branch
```

##### DockerHub (`docker.io`)

###### Current Zephyr versions

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

###### Zephyr 3.7 LTS

```
docker run -ti -v $HOME/Work/zephyrproject:/workdir \
docker.io/zephyrprojectrtos/zephyr-build:v0.26-branch
```

#### Building Developer Docker Image

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

0 comments on commit 92b40c0

Please sign in to comment.