I’m not able to find the docker image for the weston-touch-calibrator.
I’ve tried this:
docker pull torizon/weston-touch-calibrator:2
2: Pulling from torizon/weston-touch-calibrator
no matching manifest for linux/amd64 in the manifest list entries
Why this error? more importantly, how should I ask differently?
For contrast, I can successfully get another image from torizon:
This works as expected and I get what I need:
Where are you running this docker pull command? The issue is hinted in the error message itself.
no matching manifest for linux/amd64 in the manifest list entries
You’re trying to pull an amd64 version of this docker image. Which doesn’t exist we only have arm and arm64 versions available. The docker pull command by default attempts to pull the image architecture that matches the system architecture you’re running the command on.