diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-01-13 08:52:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-13 08:52:13 +0100 |
commit | 9e2e4d7615311b38b1e553af32a5666888ef3c96 (patch) | |
tree | df806446d4aa9d5731778e3e40a6663cba1d693c /pkg | |
parent | c7d3b59da4b90b591a162b4e6cef21663b15f279 (diff) | |
parent | 1cdaf45d053caccd3aeebfe2d23df3aa6f2097c5 (diff) | |
download | podman-9e2e4d7615311b38b1e553af32a5666888ef3c96.tar.gz podman-9e2e4d7615311b38b1e553af32a5666888ef3c96.tar.bz2 podman-9e2e4d7615311b38b1e553af32a5666888ef3c96.zip |
Merge pull request #4694 from openSUSE/history-names-in-inspect
Add history names to image inspect data
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 ec3d98613..8249dc4aa 100644 --- a/pkg/inspect/inspect.go +++ b/pkg/inspect/inspect.go @@ -31,6 +31,7 @@ type ImageData struct { ManifestType string `json:"ManifestType"` User string `json:"User"` History []v1.History `json:"History"` + NamesHistory []string `json:"NamesHistory"` } // RootFS holds the root fs information of an image |