Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oxzi/armmbed-docker
Dockerfile to work with mbed-cli and yotta
https://github.com/oxzi/armmbed-docker
dockerfile mbed yotta
Last synced: 8 days ago
JSON representation
Dockerfile to work with mbed-cli and yotta
- Host: GitHub
- URL: https://github.com/oxzi/armmbed-docker
- Owner: oxzi
- License: other
- Created: 2020-07-02T13:29:49.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-07-03T14:49:26.000Z (over 4 years ago)
- Last Synced: 2023-03-10T07:45:08.594Z (almost 2 years ago)
- Topics: dockerfile, mbed, yotta
- Language: Dockerfile
- Homepage:
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![]()
Dockerfiles to work with [mbed-cli][] and [yotta][].
One for the latest boards, supported by Mbed OS 5/6, and one for dinosaurs,
running with Mbed OS 2. Some SDKs for the latter are requiring Python 2. That's
why we are having another Dockerfile.```bash
# Build the Docker containers for current boards and dinosaurs
docker build -t arm-build-env .
docker build -t arm-build-legacy-env -f Dockerfile.legacy .# Switch to your project and run one of those
docker run --rm -it -v `pwd`:/app arm-build-env bash
docker run --rm -it -v `pwd`:/app arm-build-legacy-env bash
```[mbed-cli]:https://github.com/ARMmbed/mbed-cli
[yotta]:https://github.com/ARMmbed/yotta