diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-11-20 08:53:21 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-20 08:53:21 -0800 |
commit | fe4f09493f41f675d24c969d1b60d1a6a45ddb9e (patch) | |
tree | 723bc55fce645c86c9ecaf8aa1eadde46333af2c /pkg | |
parent | 21a76077d36a7d2a79bf4e18b6d3afcb717b102a (diff) | |
parent | 690c52a113124efcedccb84e44198e7602f064ec (diff) | |
download | podman-fe4f09493f41f675d24c969d1b60d1a6a45ddb9e.tar.gz podman-fe4f09493f41f675d24c969d1b60d1a6a45ddb9e.tar.bz2 podman-fe4f09493f41f675d24c969d1b60d1a6a45ddb9e.zip |
Merge pull request #1829 from baude/enableportbindinginpods
Allow users to expose ports from the pod to the host
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/spec/createconfig.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pkg/spec/createconfig.go b/pkg/spec/createconfig.go index 6ac9d82da..6a0642ee7 100644 --- a/pkg/spec/createconfig.go +++ b/pkg/spec/createconfig.go @@ -335,7 +335,6 @@ func (c *CreateConfig) GetContainerCreateOptions(runtime *libpod.Runtime) ([]lib } options = append(options, runtime.WithPod(pod)) } - if len(c.PortBindings) > 0 { portBindings, err = c.CreatePortBindings() if err != nil { |