summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2018-03-14 12:09:54 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2018-03-14 17:14:07 +0000
commitbc358eb396aa87f3122f0449945efc03ed64bfd2 (patch)
tree5509830d87320a84aca5562667b9ea144abe883b /cmd
parent97c2c339784c7570ff8abcd43edc6bd55ad6de42 (diff)
downloadpodman-bc358eb396aa87f3122f0449945efc03ed64bfd2.tar.gz
podman-bc358eb396aa87f3122f0449945efc03ed64bfd2.tar.bz2
podman-bc358eb396aa87f3122f0449945efc03ed64bfd2.zip
Include tmpfs in inspect
Other container runtimes include the tmpfs mount points in their inspect output. Podman should as well. It is under hostconfig. Resolves: #483 Signed-off-by: baude <bbaude@redhat.com> Closes: #488 Approved by: rhatdan
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/inspect.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/inspect.go b/cmd/podman/inspect.go
index adb714901..8bf6f96be 100644
--- a/cmd/podman/inspect.go
+++ b/cmd/podman/inspect.go
@@ -241,6 +241,7 @@ func getCtrInspectInfo(ctr *libpod.Container, ctrInspectData *inspect.ContainerI
Memory: createArtifact.Resources.Memory,
Ulimits: createArtifact.Resources.Ulimit,
SecurityOpt: createArtifact.SecurityOpts,
+ Tmpfs: createArtifact.Tmpfs,
},
&inspect.CtrConfig{
Hostname: spec.Hostname,