79654680

Date: 2025-06-05 14:38:50
Score: 0.5
Natty:
Report link

This error, in general, means that Docker was looking for a certain container identified by that SHA signature but did not find the container.

In addition to the other answers here, check for any accidental changes to your dockerfile or docker-compose file that have occurred since the last time you built the project, such as by switching git branches.

In my case, an old version of my docker-compose file was in my environment due to changing to an outdated git branch. The old version built the image using an ARM image (on an Apple M Macbook) but the new version specified "platform: linux/amd64" for the container. Thus, Docker was looking for an ARM container and only found an amd64 container. Restoring the correct version of my docker-compose by merging git branches fixed it

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: nickjaybird