aboutsummaryrefslogtreecommitdiff
path: root/pkg/inspect
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2018-08-24 05:47:37 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-08-24 12:16:19 +0000
commite7fbf329c206397b77f39b60e1bed0c8b9de45c6 (patch)
tree753e01de94b2c3d3b99e2ced9d5d9c8c2313a6ac /pkg/inspect
parent16465007d0ea1226b63efccc98f1adc8dc279fd3 (diff)
downloadpodman-e7fbf329c206397b77f39b60e1bed0c8b9de45c6.tar.gz
podman-e7fbf329c206397b77f39b60e1bed0c8b9de45c6.tar.bz2
podman-e7fbf329c206397b77f39b60e1bed0c8b9de45c6.zip
Reveal information about container capabilities
I am often asked about the list of capabilities availabel to a container. We should be listing this data in the inspect command for effective capabilities and the bounding set. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Closes: #1335 Approved by: TomSweeneyRedHat
Diffstat (limited to 'pkg/inspect')
-rw-r--r--pkg/inspect/inspect.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/inspect/inspect.go b/pkg/inspect/inspect.go
index b9230027c..62ba53147 100644
--- a/pkg/inspect/inspect.go
+++ b/pkg/inspect/inspect.go
@@ -161,6 +161,8 @@ type ContainerInspectData struct {
MountLabel string `json:"MountLabel"`
ProcessLabel string `json:"ProcessLabel"`
AppArmorProfile string `json:"AppArmorProfile"`
+ EffectiveCaps []string `json:"EffectiveCaps"`
+ BoundingCaps []string `json:"BoundingCaps"`
ExecIDs []string `json:"ExecIDs"`
GraphDriver *Data `json:"GraphDriver"`
SizeRw int64 `json:"SizeRw,omitempty"`