mirror of https://github.com/containers/podman.git
Merge pull request #2067 from mheon/fix_garbage_ports
Use sprintf to generate port numbers while committing
This commit is contained in:
commit
e796f522f6
|
@ -2,6 +2,7 @@ package libpod
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"fmt"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/containers/buildah"
|
"github.com/containers/buildah"
|
||||||
|
@ -101,7 +102,7 @@ func (c *Container) Commit(ctx context.Context, destImage string, options Contai
|
||||||
}
|
}
|
||||||
// Expose ports
|
// Expose ports
|
||||||
for _, p := range c.config.PortMappings {
|
for _, p := range c.config.PortMappings {
|
||||||
importBuilder.SetPort(string(p.ContainerPort))
|
importBuilder.SetPort(fmt.Sprintf("%d", p.ContainerPort))
|
||||||
}
|
}
|
||||||
// Labels
|
// Labels
|
||||||
for k, v := range c.Labels() {
|
for k, v := range c.Labels() {
|
||||||
|
|
Loading…
Reference in New Issue