diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-11-26 16:46:22 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-26 16:46:22 -0800 |
commit | 39560500fcc504bea70d48759f44c64f680c2ef2 (patch) | |
tree | 96d1a8f64e6337e33cbcb2d44a92764666ae7160 /pkg | |
parent | 392648e7bcf954284907318057be7ea38a1437fc (diff) | |
parent | 5438ec19181cc5855e6b54e152e0fe3161a75913 (diff) | |
download | podman-39560500fcc504bea70d48759f44c64f680c2ef2.tar.gz podman-39560500fcc504bea70d48759f44c64f680c2ef2.tar.bz2 podman-39560500fcc504bea70d48759f44c64f680c2ef2.zip |
Merge pull request #1868 from QiWang19/issue860
Add history field to image inspect
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/inspect/inspect.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/inspect/inspect.go b/pkg/inspect/inspect.go index 62ba53147..5bdcf677f 100644 --- a/pkg/inspect/inspect.go +++ b/pkg/inspect/inspect.go @@ -126,6 +126,7 @@ type ImageData struct { Annotations map[string]string `json:"Annotations"` ManifestType string `json:"ManifestType"` User string `json:"User"` + History []v1.History `json:"History"` } // RootFS holds the root fs information of an image |