mirror of https://github.com/containers/podman.git
Add volume mounts to PS output
When listing containers, you should be able to list the mounts
with something like --format "table{{".Mounts}}".
Resolves: #2238
Signed-off-by: baude <bbaude@redhat.com>
This commit is contained in:
parent
afd4d5f4a4
commit
4b40640c81
|
|
@ -88,6 +88,7 @@ type PsContainerOutput struct {
|
||||||
PIDNS string
|
PIDNS string
|
||||||
User string
|
User string
|
||||||
UTS string
|
UTS string
|
||||||
|
Mounts string
|
||||||
}
|
}
|
||||||
|
|
||||||
// Namespace describes output for ps namespace
|
// Namespace describes output for ps namespace
|
||||||
|
|
@ -228,6 +229,7 @@ func NewBatchContainer(ctr *libpod.Container, opts PsOptions) (PsContainerOutput
|
||||||
pso.CreatedAt = ctr.CreatedTime()
|
pso.CreatedAt = ctr.CreatedTime()
|
||||||
pso.StartedAt = startedAt
|
pso.StartedAt = startedAt
|
||||||
pso.Labels = ctr.Labels()
|
pso.Labels = ctr.Labels()
|
||||||
|
pso.Mounts = strings.Join(ctr.UserVolumes(), " ")
|
||||||
|
|
||||||
if opts.Namespace {
|
if opts.Namespace {
|
||||||
pso.Cgroup = ns.Cgroup
|
pso.Cgroup = ns.Cgroup
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue