a
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Wojciech Kwolek 2022-12-24 05:44:25 +01:00
parent 936d049552
commit 75486a3d75
1 changed files with 3 additions and 1 deletions

View File

@ -55,7 +55,9 @@ Here's how:
docker context create bob --docker "host=ssh://bob@10.0.0.2"
```
3. Create a buildx builder for your local computer. In this case, my local machine supports linux/arm64/v8 natively, but it also can build amd64 images through qemu, so I explicitly set `--platform` to just `linux/arm64/v8`. I might also add `linux/arm/v7` for images meant to run on something like a Raspberry Pi here, because even though it will still run via QEMU, I don't have anything better to build for `armv7` anyway. (it's comma separated)
3. Create a buildx builder for your local computer.
In this case, my local machine supports `linux/arm64/v8` natively, but it also can build `amd64` images through QEMU, so I explicitly set `--platform` to just `linux/arm64/v8`. I might also add `linux/arm/v7` for images meant to run on something like a Raspberry Pi here, because even though it will still run via QEMU, I don't have anything better to build for `armv7` anyway. (it's comma separated)
```bash
docker buildx create \