Fingerprint

A set of properties that uniquely identify a given Docker image.

JSON representation
{
  "v1Name": string,
  "v2Blob": [
    string
  ],
  "v2Name": string
}
Fields
v1Name

string

Required. The layer ID of the final layer in the Docker image's v1 representation.

v2Blob[]

string

Required. The ordered list of v2 blobs that represent a given image.

v2Name

string

Output only. The name of the image's v2 blobs computed via: [bottom] := v2Blob[bottom] [N] := sha256(v2Blob[N] + " " + v2Name[N+1]) Only the name of the final blob is kept.