Skip to content
New issue

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

publish multi-arch images #318

Open
danbf opened this issue Jul 22, 2021 · 2 comments
Open

publish multi-arch images #318

danbf opened this issue Jul 22, 2021 · 2 comments
Assignees

Comments

@danbf
Copy link
Contributor

danbf commented Jul 22, 2021

can we publish multi-arch images so we can use ARM on aws?

docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7
@danbf
Copy link
Contributor Author

danbf commented Jul 22, 2021

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

docker buildx rm <builder-name>

@danbf danbf self-assigned this Jul 23, 2021
@danbf
Copy link
Contributor Author

danbf commented Jul 23, 2021

being implemented in #319

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant