We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
can we publish multi-arch images so we can use ARM on aws?
docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7
The text was updated successfully, but these errors were encountered:
since buildx needs some setup, i do this on my end for multi-arch's:
ensure i cleared out the buildx builder in case it got interrupted before
docker buildx rm <builder-name>
then:
docker buildx create --name <builder-name> docker buildx use <builder-name> docker buildx build --tag <remote_tag> . --platform linux/amd64,linux/arm64,linux/arm/v7 --push
then clear out the buildx builder so it's ready for the next time i run it
Sorry, something went wrong.
being implemented in #319
danbf
No branches or pull requests
can we publish multi-arch images so we can use ARM on aws?
The text was updated successfully, but these errors were encountered: