diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-09-21 16:20:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-21 16:20:30 -0400 |
commit | d308312fa8101fd843dd6855ee4406b1c4f012ec (patch) | |
tree | b9555a977186f18ed4692f0527ff30b52591da1e /pkg/domain | |
parent | dc5cc4356362274325a5b4fb2ba8ce71b12544dd (diff) | |
parent | e06230c9d5768af3e480e58b8e781e81737fc0d3 (diff) | |
download | podman-d308312fa8101fd843dd6855ee4406b1c4f012ec.tar.gz podman-d308312fa8101fd843dd6855ee4406b1c4f012ec.tar.bz2 podman-d308312fa8101fd843dd6855ee4406b1c4f012ec.zip |
Merge pull request #7695 from jwhonce/issues/7686
Restore 'id' stanza in pull results
Diffstat (limited to 'pkg/domain')
-rw-r--r-- | pkg/domain/entities/images.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/domain/entities/images.go b/pkg/domain/entities/images.go index d0b738934..cad6693fa 100644 --- a/pkg/domain/entities/images.go +++ b/pkg/domain/entities/images.go @@ -156,6 +156,8 @@ type ImagePullReport struct { Error string `json:"error,omitempty"` // Images contains the ID's of the images pulled Images []string `json:"images,omitempty"` + // ID contains image id (retained for backwards compatibility) + ID string `json:"id,omitempty"` } // ImagePushOptions are the arguments for pushing images. |