Example for advanced options (hooks) and buildx for Autobuild on Docker Hub to build Multiarch Images (x86_64 and ARM)
With buildx you can build multiarch Images on Docker Hub from a GitHub/Bitbucket Repository.
More Details:
- Advanced options for Autobuild
- buildx
- Building Multi-Architecture Docker Images With Buildx
- Custom Registry Cert for local build
- qemu-user-static by multiarch
.
├── hooks
├── pre_build
├── build
└── push
├── Dockerfile
└── ... more Dockerfiles
- for GitHub use the GitHub Actions (
.github/workflows/build_docker_images.yaml
): - for GitLab use the
.gitlab-ci.yml
as an example, thenhooks/
is not needed.