Replies: 1 comment 6 replies
-
Yes, we do this for all the official images. You need to create the separate images, and then create a "manifest" which ties those images together. See podman manifest for more information. |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have previously built a developer image on my computer to test out MQ code locally, but I could never commit an update to our
docker-compose.yml
, as that would fail on their machines.So I want to upload a version that works on both x86 and ARM computers, but it's not immediately clear how. If I follow the docs and run
make build-devserver
I end up with a local image that is tagged with-arm64
. I assume that would I want is to have it build two images, one forlinux/amd64
and one forlinux/arm64
, where the name is the same, so that the same name could be used in the Docker file (multiplatform builds).I would then
docker push
that image to our internal registry so that it could be used by all devs on our team.Is there any way of achieving this today?
Beta Was this translation helpful? Give feedback.
All reactions