feat: publish linux/arm64 Docker images - #535
Open
zeevox wants to merge 1 commit into
Open
Conversation
zeevox
force-pushed
the
add-arm64-docker-images
branch
from
June 6, 2026 19:26
df8240d to
5f73274
Compare
Upstream's dockers_v2 migration (DopplerHQ#540) did the heavy lifting, so publishing arm64 images now only requires listing the platform and providing emulation: - .goreleaser.yml: add linux/arm64 to the dockers_v2 platforms; the release now pushes a single multi-platform manifest to Docker Hub and GCR. - release.yaml: set up QEMU so the arm64 layers can be built on the amd64 runner. - release-tests.yaml: likewise for the snapshot build, which builds one image per platform (tags suffixed -amd64/-arm64) without pushing. Closes DopplerHQ#531
zeevox
force-pushed
the
add-arm64-docker-images
branch
from
August 12, 2026 19:32
5f73274 to
f4ae2a4
Compare
Author
|
Thanks to @watsonian's PR #540 this becomes a very simple change; it would be great to get arm64 Docker images |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Now that #540 has migrated the release pipeline to
dockers_v2, publishing linux/arm64 images reduces to a 7-line change:.goreleaser.yml: addlinux/arm64to thedockers_v2platforms, so each release pushes a single multi-platform manifest to Docker Hub and GCR.release.yaml/release-tests.yaml: set up QEMU so the arm64 layers can be built on the amd64 runners. The PR snapshot build produces per-platform images (-amd64/-arm64tag suffixes) without pushing, so CI exercises the new platform on every PR.Verified locally with GoReleaser 2.17.1:
goreleaser release --snapshot --skip=publish,signbuilds both platform images, and both rundoppler --versionsuccessfully (the non-native one under QEMU emulation).Closes #531
For full transparency, this change was made with the help of Claude Code.