diff options
| author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-08-25 09:29:03 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-25 09:29:03 -0400 |
| commit | fefa0b32c74fc5d394a0e2bd5b4564bedb3ed15d (patch) | |
| tree | 06249cd6d0df4cbc5d32ff4056eccdfd899ccab3 /libpod/container_commit.go | |
| parent | 23f9565547ae2a6b0154e6913abf7f1232f0ece0 (diff) | |
| parent | 4b2dc48d0bcde9d9dccb05f829019a52f3eddec7 (diff) | |
| download | podman-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_commit.go')
| -rw-r--r-- | libpod/container_commit.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libpod/container_commit.go b/libpod/container_commit.go index c1dd42942..87e5d511c 100644 --- a/libpod/container_commit.go +++ b/libpod/container_commit.go @@ -99,6 +99,11 @@ func (c *Container) Commit(ctx context.Context, destImage string, options Contai for _, p := range c.config.PortMappings { importBuilder.SetPort(fmt.Sprintf("%d/%s", p.ContainerPort, p.Protocol)) } + for port, protocols := range c.config.ExposedPorts { + for _, protocol := range protocols { + importBuilder.SetPort(fmt.Sprintf("%d/%s", port, protocol)) + } + } // Labels for k, v := range c.Labels() { importBuilder.SetLabel(k, v) |
