From 5438ec19181cc5855e6b54e152e0fe3161a75913 Mon Sep 17 00:00:00 2001 From: Qi Wang Date: Thu, 22 Nov 2018 21:49:30 -0500 Subject: Add history and namespaceoptions to image inspect Signed-off-by: Qi Wang --- libpod/image/image.go | 1 + pkg/inspect/inspect.go | 1 + 2 files changed, 2 insertions(+) diff --git a/libpod/image/image.go b/libpod/image/image.go index 7e520d97e..2d03786a9 100644 --- a/libpod/image/image.go +++ b/libpod/image/image.go @@ -869,6 +869,7 @@ func (i *Image) Inspect(ctx context.Context) (*inspect.ImageData, error) { GraphDriver: driver, ManifestType: manifestType, User: ociv1Img.Config.User, + History: ociv1Img.History, } return data, nil } 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 -- cgit v1.2.3-54-g00ecf