Setup Docker Buildx For Multi Arch builds
By default buildx
plugin is availabe on Docker Desktop, and if Docker was installing using deb packages. In case it is not installed, we can get it from Docker buildx - GitHub and put it to ~/.docker/cli-plugins
directory, and make it executable using the following command -
To be able to build Multi-Arch Docker Images -
And that's it! Now we can run docker buildx
on our Dockerfile(s) to build them for Multi Architecture.
Source(s)
Last updated