Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 964 Bytes

BUILD.md

File metadata and controls

21 lines (16 loc) · 964 Bytes

Build

Good article about multi arc builds.

dockerhub

$ docker buildx build --push --platform linux/arm/v6,linux/arm/v7,linux/arm64/v8,linux/amd64,linux/386 -t mliljedahl/telldus-core-mqtt:latest -t mliljedahl/telldus-core-mqtt:1.0.0 .
$ docker build -t telldus-core-mqtt:latest -t mliljedahl/telldus-core-mqtt:latest -t mliljedahl/telldus-core-mqtt:1.0.0 .
$ docker login
$ docker push mliljedahl/telldus-core-mqtt

github

$ docker buildx build --push --platform linux/arm/v6,linux/arm/v7,linux/arm64/v8,linux/amd64,linux/386 -t ghcr.io/mliljedahl/telldus-core-mqtt:latest -t ghcr.io/mliljedahl/telldus-core-mqtt:1.0.0 .
$ docker build -t telldus-core-mqtt:latest -t ghcr.io/mliljedahl/telldus-core-mqtt:latest -t ghcr.io/mliljedahl/telldus-core-mqtt:1.0.0 .
$ docker login ghcr.io
$ docker push ghcr.io/mliljedahl/telldus-core-mqtt