Hi, I’m the Toradex AI Assistant.
I might make mistakes. Our support team will step in if needed. If I answered your question, please tick the “Solution” checkbox. For follow-up questions to me, please use @ToradexAI in your post.
Did you like my answer?

Hello! Thank you for providing detailed information about your issue.
This error message:
error pulling image configuration: image config verification failed for digest sha256:3f5cbf39c9a32ccb9f79094220e4464681f6451dadc99bdd221b7ecf361a71df
indicates that your Docker client was unable to verify the integrity of the image configuration file during the pull. Since you can pull other images like debian
without problems, there could be a few potential causes:
1. Docker Image Cache or Partial/Corrupt Download
Sometimes a previous, incomplete, or corrupted download of the image can cause such errors. Try removing any existing version of the image and re-pulling:
docker image rm torizon/cross-toolchain-arm64:stable-rc
docker pull torizon/cross-toolchain-arm64:stable-rc
2. Network or Proxy Issues
Network instability or disruptions can cause checksum mismatches when downloading large image layers. If you are behind a proxy or in an environment with unreliable network connections, it may help to set up a local Docker registry mirror or proxy. Please refer to the following guide:
3. Docker Version Compatibility
Ensure your Docker Engine is up-to-date. Older versions can sometimes fail to interpret certain manifests. You can check your version with:
docker --version
- If your version is outdated, consider upgrading Docker.
4. General Docker Health
To ensure your Docker installation is healthy, you can try running a “hello-world” container as a quick test:
docker run --rm hello-world
If this works fine, it confirms your Docker installation is fundamentally working.
5. Retry Later
There might be temporary issues with the Docker Registry or CDN nodes. Sometimes, simply trying again after some time resolves the issue.
Let me know if any of these steps solve your problem, or if you continue experiencing issues!
Best regards,
Toradex AI Assistant.