From 585f2963aaef6e54aedf33122498d1e772cc90fd Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Mon, 11 Feb 2019 10:19:00 +0100 Subject: pod: drop not valid check for rootless rootless networks support port binding if the underlying slirp4netns is new enough. Signed-off-by: Giuseppe Scrivano --- cmd/podman/pod_create.go | 4 ---- 1 file changed, 4 deletions(-) (limited to 'cmd/podman') diff --git a/cmd/podman/pod_create.go b/cmd/podman/pod_create.go index 9ac5d94a9..35e58df31 100644 --- a/cmd/podman/pod_create.go +++ b/cmd/podman/pod_create.go @@ -9,7 +9,6 @@ import ( "github.com/containers/libpod/cmd/podman/libpodruntime" "github.com/containers/libpod/cmd/podman/shared" "github.com/containers/libpod/libpod" - "github.com/containers/libpod/pkg/rootless" "github.com/pkg/errors" "github.com/sirupsen/logrus" "github.com/spf13/cobra" @@ -82,9 +81,6 @@ func podCreateCmd(c *cliconfig.PodCreateValues) error { if !c.Infra { return errors.Errorf("you must have an infra container to publish port bindings to the host") } - if rootless.IsRootless() { - return errors.Errorf("rootless networking does not allow port binding to the host") - } } if !c.Infra && c.Flag("share").Changed && c.Share != "none" && c.Share != "" { -- cgit v1.2.3-54-g00ecf