-
Notifications
You must be signed in to change notification settings - Fork 175
Incorrect image digest format sent to docker client #1484
Copy link
Copy link
Closed
Labels
area/dockerSupport for the Docker operationsSupport for the Docker operationskind/defectBehavior that is inconsistent with what's intendedBehavior that is inconsistent with what's intendedpriority/p4
Description
When pull image via digest is supported ( #1186 ) we need to ensure that the digest format is sent to the client correctly.
Currently the function to format the digest for the client will return the following formatted digest:
repo@sha:digest (i.e. busybox@sha:1235453303)
If should instead return:
repo@sha256:digest (i.e. busybox@sha256:121212121213)
A simple change, but one that must be made so that docker images --digests is supported.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
area/dockerSupport for the Docker operationsSupport for the Docker operationskind/defectBehavior that is inconsistent with what's intendedBehavior that is inconsistent with what's intendedpriority/p4