Category: github, gitlab

Following the previous article where we saw how to build multi arch images using GitHub Actions, we will now show how to do the same thing using another CI. In this article, we’ll show how to use GitLab CI, which is part of the GitLab.

This should result in a build output that shows the version of the Docker CLI and Engine: We will now install Docker buildx.

We can then add DOCKER_USERNAME and DOCKER_PASSWORD variables to GitLab CI so that we can login to push our images.

And voila, you can now create a multi arch image each time you make a change in your codebase.

Related Articles