seblucas / docker-images

Various docker images based on Alpine and available for multi-arch (armhf, arm64, amd64)
https://hub.docker.com/r/seblucas/
9 stars 2 forks source link

Questions Building multi-arch docker images #1

Closed xbgmsharp closed 5 years ago

xbgmsharp commented 5 years ago

updateHub.sh build and push all docker images for a single architecture. How do you build the other not amd64? Pushing the manifest create an internal link between multiple tags images to a single tag. You still need to build and push all docker images for each architecture. Tags amd64 ,armhf, arm64 points to main tag latest.

seblucas commented 5 years ago

For now I use real SBC I own : a banana pi for the armhf build and a pine64 for the arm64 build. I build the armhf last and it creates the multi architecture tag

seblucas commented 5 years ago

I also could have used qemu to generate the other images but it seemed easier to use the devices I already own

xbgmsharp commented 5 years ago

Thanks for the clarification.