From d357703e061258a57854df1880e23775dbe717ef Mon Sep 17 00:00:00 2001 From: baude Date: Mon, 2 Jul 2018 08:30:11 -0500 Subject: add image user to inspect data Signed-off-by: baude Closes: #1036 Approved by: rhatdan --- 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 57eabe2c8..b56617ae7 100644 --- a/libpod/image/image.go +++ b/libpod/image/image.go @@ -815,6 +815,7 @@ func (i *Image) Inspect(ctx context.Context) (*inspect.ImageData, error) { }, GraphDriver: driver, ManifestType: manifestType, + User: ociv1Img.Config.User, } return data, nil } diff --git a/pkg/inspect/inspect.go b/pkg/inspect/inspect.go index 61776f1e2..5b5a27c3d 100644 --- a/pkg/inspect/inspect.go +++ b/pkg/inspect/inspect.go @@ -125,6 +125,7 @@ type ImageData struct { Labels map[string]string `json:"Labels"` Annotations map[string]string `json:"Annotations"` ManifestType string `json:"ManifestType"` + User string `json:"User"` } // RootFS holds the root fs information of an image -- cgit v1.2.3-54-g00ecf