-
I'm on an Intel Mac using colima, and I have successfully been able to build an image for linux/arm64 alongside my linux/386 builds using: docker buildx create \
--name multiarch \
--platform linux/amd64,linux/amd64/v2,linux/amd64/v3,linux/arm64,linux/386,linux/arm/v7 \
--use colima
docker build \
--push \
--platform linux/arm64/v8,linux/amd64 \
--tag ghcr.io/myname/myimage:v0.2 \
. However, when trying to create an image for an old raspberry pi, doing: docker build \
--push \
--platform linux/arm/v7,linux/arm64/v8,linux/amd64 \
--tag ghcr.io/myname/myimage:v0.2 \
. fails with:
Is this because colima does not support linux/arm/v7, or am I missing something? |
Beta Was this translation helpful? Give feedback.
Answered by
abiosoft
Mar 27, 2023
Replies: 1 comment 2 replies
-
Yeah, You can actually just run the following and it should work afterwards.
|
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
BradAF
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yeah,
linux/arm/v7
it is currently not bundled.You can actually just run the following and it should work afterwards.