summaryrefslogtreecommitdiff
path: root/libpod/container_inspect.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-08-25 09:29:03 -0400
committerGitHub <noreply@github.com>2021-08-25 09:29:03 -0400
commitfefa0b32c74fc5d394a0e2bd5b4564bedb3ed15d (patch)
tree06249cd6d0df4cbc5d32ff4056eccdfd899ccab3 /libpod/container_inspect.go
parent23f9565547ae2a6b0154e6913abf7f1232f0ece0 (diff)
parent4b2dc48d0bcde9d9dccb05f829019a52f3eddec7 (diff)
downloadpodman-fefa0b32c74fc5d394a0e2bd5b4564bedb3ed15d.tar.gz
podman-fefa0b32c74fc5d394a0e2bd5b4564bedb3ed15d.tar.bz2
podman-fefa0b32c74fc5d394a0e2bd5b4564bedb3ed15d.zip
Merge pull request #11314 from Luap99/expose-ports
podman inspect show exposed ports
Diffstat (limited to 'libpod/container_inspect.go')
-rw-r--r--libpod/container_inspect.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/container_inspect.go b/libpod/container_inspect.go
index 8c662c488..97318a2e8 100644
--- a/libpod/container_inspect.go
+++ b/libpod/container_inspect.go
@@ -624,7 +624,7 @@ func (c *Container) generateInspectContainerHostConfig(ctrSpec *spec.Spec, named
// Port bindings.
// Only populate if we're using CNI to configure the network.
if c.config.CreateNetNS {
- hostConfig.PortBindings = makeInspectPortBindings(c.config.PortMappings)
+ hostConfig.PortBindings = makeInspectPortBindings(c.config.PortMappings, c.config.ExposedPorts)
} else {
hostConfig.PortBindings = make(map[string][]define.InspectHostPort)
}