summaryrefslogtreecommitdiff
path: root/pkg/api/handlers
diff options
context:
space:
mode:
authorPaul Holzinger <pholzing@redhat.com>2021-09-20 13:43:30 +0200
committerMatthew Heon <matthew.heon@pm.me>2021-09-22 16:23:53 -0400
commit863ea75c4f29add42bfff517974c8b4f36925334 (patch)
treead2dcff85fa22ff66ae34566c8ebafee9cb8f5e0 /pkg/api/handlers
parentc66db2b704cf5c98bdf1ecc337aeb5550e6ecd70 (diff)
downloadpodman-863ea75c4f29add42bfff517974c8b4f36925334.tar.gz
podman-863ea75c4f29add42bfff517974c8b4f36925334.tar.bz2
podman-863ea75c4f29add42bfff517974c8b4f36925334.zip
compat API: /images/json prefix image id with sha256
Docker adds the `sha256:` prefix to the image ID, so our compat endpoint has to do this as well. Fixes #11623 Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'pkg/api/handlers')
-rw-r--r--pkg/api/handlers/types.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/api/handlers/types.go b/pkg/api/handlers/types.go
index b82c586ea..fedab3bb3 100644
--- a/pkg/api/handlers/types.go
+++ b/pkg/api/handlers/types.go
@@ -183,7 +183,8 @@ func ImageToImageSummary(l *libimage.Image) (*entities.ImageSummary, error) {
}
is := entities.ImageSummary{
- ID: l.ID(),
+ // docker adds sha256: in front of the ID
+ ID: "sha256:" + l.ID(),
ParentId: imageData.Parent,
RepoTags: imageData.RepoTags,
RepoDigests: imageData.RepoDigests,