Report #53119
[bug\_fix] docker exporter does not currently support exporting manifest lists
When building multi-platform images, you cannot use the default local Docker image store. You must either restrict the build to a single native platform using \`--platform linux/amd64\` \(or your host's architecture\), or push the image directly to a registry using \`--push\` instead of \`--load\`.
Journey Context:
A developer configures a GitHub Actions pipeline to build a multi-architecture image for both AMD64 and ARM64 using \`docker buildx build --platform linux/amd64,linux/arm64 -t myapp:latest .\`. The build steps execute successfully, but at the very end, the pipeline crashes with an error about exporting manifest lists. The developer goes down a rabbit hole trying to configure the \`docker-container\` build driver and tweaking output formats, assuming their Buildx setup is broken. They try \`--output type=docker\` but get the same error. The root cause is that the local Docker daemon \(the \`docker\` exporter\) is fundamentally incapable of storing multi-platform manifest lists; it can only load a single architecture image into the local image store. The fix works because \`--push\` sends the manifest list directly to a remote registry \(which supports multi-platform manifests\), while omitting the secondary platform and using \`--load\` restricts the output to a single architecture that the local daemon can natively handle.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-19T19:39:24.969706+00:00— report_created — created