Describe the bug
Using docker or in a kubernetes workload, if I try to start an image that is only built for amd64 on my Apple Silicon Macbook, it fails to start with a no match for platform in manifest error:
uname -a
Darwin mac135614 24.6.0 Darwin Kernel Version 24.6.0: Wed Nov 5 21:32:34 PST 2025; root:xnu-11417.140.69.705.2~1/RELEASE_ARM64_T6020 arm64
orbctl version
Version: 2.0.5 (2000500)
Commit: cfe47627f138ffd822c958553b0a93eaf2692c71 (v2.0.5)
docker run -it --rm ghcr.io/huggingface/text-embeddings-inference:cpu-sha-1bb5920
Unable to find image 'ghcr.io/huggingface/text-embeddings-inference:cpu-sha-1bb5920' locally
docker: Error response from daemon: no matching manifest for linux/arm64/v8 in the manifest list entries: no match for platform in manifest: not found
Run 'docker run --help' for more information
Explicitly setting the platform does work, as shown below:
docker run -it --rm --platform linux/amd64 ghcr.io/huggingface/text-embeddings-inference:cpu-sha-1bb5920
DOCKER_DEFAULT_PLATFORM=linux/amd64 docker run -it --rm ghcr.io/huggingface/text-embeddings-inference:cpu-sha-1bb5920
But what is happening is the amd64-only image is not run in Kubernetes. I have tried checking and unchecking the "Use Rosetta to run Intel code" setting.
To Reproduce
No response
Expected behavior
Expect amd64 container to start.
Diagnostic report (REQUIRED)
OrbStack info:
Version: 2.0.5
Commit: cfe47627f138ffd822c958553b0a93eaf2692c71 (v2.0.5)
System info:
macOS: 15.7.3 (24G419)
CPU: arm64, 12 cores
CPU model: Apple M2 Max
Model: Mac14,6
Memory: 96 GiB
Full report: https://orbstack.dev/_admin/diag/orbstack-diagreport_2026-02-11T20-05-54.820173Z.zip
Screenshots and additional context (optional)
No response
Describe the bug
Using docker or in a kubernetes workload, if I try to start an image that is only built for
amd64on my Apple Silicon Macbook, it fails to start with ano match for platform in manifesterror:Explicitly setting the platform does work, as shown below:
But what is happening is the amd64-only image is not run in Kubernetes. I have tried checking and unchecking the "Use Rosetta to run Intel code" setting.
To Reproduce
No response
Expected behavior
Expect amd64 container to start.
Diagnostic report (REQUIRED)
OrbStack info:
Version: 2.0.5
Commit: cfe47627f138ffd822c958553b0a93eaf2692c71 (v2.0.5)
System info:
macOS: 15.7.3 (24G419)
CPU: arm64, 12 cores
CPU model: Apple M2 Max
Model: Mac14,6
Memory: 96 GiB
Full report: https://orbstack.dev/_admin/diag/orbstack-diagreport_2026-02-11T20-05-54.820173Z.zip
Screenshots and additional context (optional)
No response