https://github.com/brooksprumo/docker-mbed-gcc-arm
Docker images for Mbed OS
https://github.com/brooksprumo/docker-mbed-gcc-arm
docker docker-image mbed-os
Last synced: 3 months ago
JSON representation
Docker images for Mbed OS
- Host: GitHub
- URL: https://github.com/brooksprumo/docker-mbed-gcc-arm
- Owner: brooksprumo
- License: bsl-1.0
- Created: 2020-05-18T21:54:50.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-15T21:47:05.000Z (almost 6 years ago)
- Last Synced: 2025-07-16T00:10:38.392Z (12 months ago)
- Topics: docker, docker-image, mbed-os
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/brooksp/mbed-gcc-arm
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker images for [Mbed OS](https://mbed.com)
Branches correspond to different Mbed OS releases.
## Building the Docker image
Simple! Just call `make`.
## Using the image to build an Mbed app
To build an Mbed OS application, navigate to the app's root directory and then run this:
```
docker run --rm -it \
--volume ${PWD}:/work \
--workdir /work \
brooksp/mbed-gcc-arm \
mbed compile
```