diff options
author | Qi Wang <qiwan@redhat.com> | 2018-11-22 21:49:30 -0500 |
---|---|---|
committer | Qi Wang <qiwan@redhat.com> | 2018-11-26 10:56:55 -0500 |
commit | 5438ec19181cc5855e6b54e152e0fe3161a75913 (patch) | |
tree | 8bb8a2f38eec460f4088bd883acac931fb28a1bc /pkg | |
parent | 1fdfeb87100aee82d4de17b2b3f9a81aedfcb6a8 (diff) | |
download | podman-5438ec19181cc5855e6b54e152e0fe3161a75913.tar.gz podman-5438ec19181cc5855e6b54e152e0fe3161a75913.tar.bz2 podman-5438ec19181cc5855e6b54e152e0fe3161a75913.zip |
Add history and namespaceoptions to image inspect
Signed-off-by: Qi Wang <qiwan@redhat.com>
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 |