Currently, DockerImageName doesn't support image names in <name>:<tag>@sha256:<hash> format, as it expects image name to be in one of these formats:
<name>:<tag>
<name>@sha256:<hash>
However, <name>:<tag>@sha256:<hash> is a valid Docker image name format. Could you please add its support?
As a result, I expect DockerImageName to ignore tags of such image names and work with hash only. Tags can be returned via toString().
Currently,
DockerImageNamedoesn't support image names in<name>:<tag>@sha256:<hash>format, as it expects image name to be in one of these formats:<name>:<tag><name>@sha256:<hash>However,
<name>:<tag>@sha256:<hash>is a valid Docker image name format. Could you please add its support?As a result, I expect
DockerImageNameto ignore tags of such image names and work with hash only. Tags can be returned viatoString().