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