mirror of
https://github.com/containers/podman.git
synced 2025-06-23 02:18:13 +08:00
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:
@ -88,6 +88,7 @@ type PsContainerOutput struct {
|
||||
PIDNS string
|
||||
User string
|
||||
UTS string
|
||||
Mounts string
|
||||
}
|
||||
|
||||
// Namespace describes output for ps namespace
|
||||
@ -228,6 +229,7 @@ func NewBatchContainer(ctr *libpod.Container, opts PsOptions) (PsContainerOutput
|
||||
pso.CreatedAt = ctr.CreatedTime()
|
||||
pso.StartedAt = startedAt
|
||||
pso.Labels = ctr.Labels()
|
||||
pso.Mounts = strings.Join(ctr.UserVolumes(), " ")
|
||||
|
||||
if opts.Namespace {
|
||||
pso.Cgroup = ns.Cgroup
|
||||
|
Reference in New Issue
Block a user