Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brooksprumo/docker-zephyr
Docker images for Zephyr RTOS
https://github.com/brooksprumo/docker-zephyr
docker docker-images zephyr-rtos
Last synced: about 10 hours ago
JSON representation
Docker images for Zephyr RTOS
- Host: GitHub
- URL: https://github.com/brooksprumo/docker-zephyr
- Owner: brooksprumo
- License: bsl-1.0
- Created: 2020-07-29T21:20:31.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-06T20:24:46.000Z (about 4 years ago)
- Last Synced: 2024-10-24T16:49:14.650Z (19 days ago)
- Topics: docker, docker-images, zephyr-rtos
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/brooksp/zephyr
- Size: 1.95 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker images for [Zephyr RTOS](https://www.zephyrproject.org/)
Branches correspond to Zephyr releases.
## Building the image
Simple! Just call `make`.
## Using the image to build a Zephyr app
To build a Zephyr application, run:
```
docker run --rm -it brooksp/zephyr bash
```then
```
cd /zephyrproject/zephyr
west build -p auto --board nrf52840dk_nrf52840 samples/basic/blinky
```