Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nigh/pico-sdk-docker
a docker version sdk for Raspberry Pi Pico
https://github.com/nigh/pico-sdk-docker
docker pico raspberry-pi raspberry-pi-pico sdk
Last synced: 2 months ago
JSON representation
a docker version sdk for Raspberry Pi Pico
- Host: GitHub
- URL: https://github.com/nigh/pico-sdk-docker
- Owner: Nigh
- License: mit
- Created: 2024-08-28T07:04:53.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-28T16:39:50.000Z (4 months ago)
- Last Synced: 2024-10-31T13:04:48.334Z (2 months ago)
- Topics: docker, pico, raspberry-pi, raspberry-pi-pico, sdk
- Language: Dockerfile
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pico-sdk-docker
a docker version sdk for Raspberry Pi Pico## Usage
First, you should pull the image.
```bash
docker pull xianii/pico-sdk:latest
```Then, visit the [example project](https://github.com/Nigh/pico-docker-example) and follow the instructions.
## Build
> [!WARNING]
> Follow the steps below only if you want to build the image locally.The build uses [chsrc](https://github.com/RubyMetric/chsrc) to speed up apt. In case you want to specific a mirror, visit the chsrc repo for the avaliable mirror list.
```bash
# set apt source mirror with speedtest (default)
docker build -t pico-sdk .
# specific a mirror
docker build -t pico-sdk --build-arg MIRROR=ustc .
# without mirror
docker build -t pico-sdk --build-arg MIRROR=none .
```