3 min read
Using buildx we can build multi architecture containers, we can use a github action to automatically build it
28/09/2021
Read more...7 min read
Docker has the ability to handle multi architecture containers: Using the same container image and tag we can deploy it on multiple architectures such as Intel and ARM. Since a docker container is composed of multiple layers it will just use one or another depending on the architecture we are running it. From the user perspective there's no difference on it's usage, but how do we build them?
10/06/2021
Read more...