https://github.com/tridentiot/z-way-esp-build-docker
Docker for building Z-Way for ESP
https://github.com/tridentiot/z-way-esp-build-docker
Last synced: 2 months ago
JSON representation
Docker for building Z-Way for ESP
- Host: GitHub
- URL: https://github.com/tridentiot/z-way-esp-build-docker
- Owner: tridentiot
- Created: 2025-06-04T18:00:37.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-05T00:12:36.000Z (about 1 year ago)
- Last Synced: 2025-12-28T11:54:45.023Z (6 months ago)
- Language: Dockerfile
- Size: 304 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Z-Way ESP Build Docker
Docker for compiling Z-Way for ESP
## Fetch the docker image
```
docker pull ghcr.io/tridentiot/z-way-esp-build-docker:main
```
## Compile Z-Way for ESP
Start the container:
```
docker run -it -v $PWD:/build --platform linux/amd64 ghcr.io/tridentiot/z-way-esp-build-docker:main bash
```
Execute inside:
```
[ -d z-way-esp32 ] || (wget https://github.com/tridentiot/z-way-builds/releases/download/nighly/z-way-esp.tgz -qO - | tar -zxf - && unzip z-way-esp32-src.zip)
cd z-way-esp32
python3 py_scripts/esp_builder.py build -s ./ -o ./bin_arch -d prod-xiao -q
```
Remove `-d prod-xiao` to build all targets.