[2425] Publish multi-platform Docker images - #2426
Open
ctrahey wants to merge 1 commit into
Open
Conversation
Author
|
Working on the ECA - sent an email to help me unstick my eclipse account but when that happens I'll kick off the check again. |
AxelRICHARD
approved these changes
Aug 14, 2026
The application jar is architecture independent and is built outside Docker, so publishing images for linux/arm64 alongside linux/amd64 only requires QEMU to be available to Buildx and the platforms to be listed on the push step. The base image and the pinned nodejs/npm apk packages of the runtime Dockerfile are available for both platforms. The single-platform image built for the Playwright and Cypress jobs is unchanged; only the pushed image becomes multi-platform. The Apple Silicon emulation notes in the installation guide and docker-compose.yml now only apply to releases older than v2026.9.0. Bug: eclipse-syson#2425 Signed-off-by: Chris Trahey <christrahey@gmail.com>
ctrahey
force-pushed
the
publish-multi-arch-images
branch
from
August 14, 2026 16:57
8f5e49c to
07cb794
Compare
Author
|
Thanks for the approval! Rebased and ECA is signed :-) |
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.
Fixes #2425.
The eclipsesyson/syson Docker images are currently linux/amd64 only, requiring arm64 users (Apple Silicon, AWS Graviton) to force emulation via DOCKER_DEFAULT_PLATFORM=linux/amd64 (#991). Since the jar is architecture independent and built outside Docker, multi-platform publishing needs only:
The test image built with load: true for Playwright/Cypress stays single-arch/native, so those jobs are unaffected. The amd64 half of the pushed image reuses the Buildx cache from the test build; the arm64 half builds under QEMU, which only runs the apk add and adduser layers.
Validated locally: docker buildx build --platform linux/amd64,linux/arm64 of the unmodified backend/application/syson-application context completes for both platforms, and the arm64 image runs SysON natively against the standard docker-compose setup.
Also updates the Apple Silicon workaround notes in the installation guide, docker-compose.yml, CHANGELOG.adoc, and the 2026.9.0 release notes to reflect that the workaround only applies to older releases.
Bug: #2425
PLEASE READ ALL ITEMS AND CHECK ONLY RELEVANT CHECKBOXES BELOW
Auto review
Project management
priority:andpr:labels been added to the pull request? (In case of doubt, start with the labelspriority: lowandpr: to review later)area:,type:)Changelog and release notes
CHANGELOG.adoc+doc/content/modules/user-manual/pages/release-notes/YYYY.MM.0.adocbeen updated to reference the relevant issues?CHANGELOG.adoc?CHANGELOG.adoc?doc/content/modules/user-manual/pages/release-notes/YYYY.MM.0.adoc?Key highlightssection indoc/content/modules/user-manual/pages/release-notes/YYYY.MM.0.adoc?Documentation
Tests