summaryrefslogtreecommitdiff
path: root/pkg/ps/ps.go
diff options
context:
space:
mode:
authorPaul Holzinger <paul.holzinger@web.de>2021-01-09 16:54:41 +0100
committerPaul Holzinger <paul.holzinger@web.de>2021-01-09 19:15:43 +0100
commit38baf3d5e2bc5c1e8b216dc072ea1d3eaf5053b8 (patch)
treeb471d6178b117e8ab6f287fddc8b546a04cce711 /pkg/ps/ps.go
parent1242e7b7a612b1dcae0e09a7fd10e266d34cf9e2 (diff)
downloadpodman-38baf3d5e2bc5c1e8b216dc072ea1d3eaf5053b8.tar.gz
podman-38baf3d5e2bc5c1e8b216dc072ea1d3eaf5053b8.tar.bz2
podman-38baf3d5e2bc5c1e8b216dc072ea1d3eaf5053b8.zip
Add Networks format placeholder to podman ps and pod ps
`podman ps --format {{.Networks}}` will show all connected networks for this container. For `pod ps` it will show the infra container networks. Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
Diffstat (limited to 'pkg/ps/ps.go')
-rw-r--r--pkg/ps/ps.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkg/ps/ps.go b/pkg/ps/ps.go
index 9e0dcb728..dc577890a 100644
--- a/pkg/ps/ps.go
+++ b/pkg/ps/ps.go
@@ -178,6 +178,11 @@ func ListContainerBatch(rt *libpod.Runtime, ctr *libpod.Container, opts entities
return entities.ListContainer{}, err
}
+ networks, _, err := ctr.Networks()
+ if err != nil {
+ return entities.ListContainer{}, err
+ }
+
ps := entities.ListContainer{
AutoRemove: ctr.AutoRemove(),
Command: conConfig.Command,
@@ -192,6 +197,7 @@ func ListContainerBatch(rt *libpod.Runtime, ctr *libpod.Container, opts entities
Labels: conConfig.Labels,
Mounts: ctr.UserVolumes(),
Names: []string{conConfig.Name},
+ Networks: networks,
Pid: pid,
Pod: conConfig.Pod,
Ports: portMappings,