I am trying to search for an image using it's SHA256 hash:
I have sha256 hash and I want to know if any docker image with this sha256 hash exists or not. Is it possible to do that and how?
You could list all the images with docker images and find a particular one:
docker images --no-trunc -q | grep <image_hash>
Or you want to search via a chunk of hash number:
docker images -q | grep <image_hash>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With