Digest is a digest value that we can use to locate the image, if one was specified at creation-time. Typically it is the digest of one among possibly many digests that we have stored for the image, so many applications are better off using the entire list returned by Digests().
()
| 130 | // possibly many digests that we have stored for the image, so many |
| 131 | // applications are better off using the entire list returned by Digests(). |
| 132 | func (i *Image) Digest() digest.Digest { |
| 133 | return i.storageImage.Digest |
| 134 | } |
| 135 | |
| 136 | // Digests is a list of digest values of the image's manifests, and possibly a |
| 137 | // manually-specified value, that we can use to locate the image. If Digest is |
no outgoing calls