Merge pull request #2917 from baude/remotestart

podman-remote start
This commit is contained in:
OpenShift Merge Robot
2019-04-17 10:13:18 -07:00
committed by GitHub
9 changed files with 166 additions and 123 deletions

View File

@@ -344,7 +344,7 @@ registries = ['{{.Host}}:{{.Port}}']`
defer lock8.Unlock()
podmanTest.RestoreArtifact(registry)
registryLocal := podmanTest.Podman([]string{"run", "-d", "-p", fmt.Sprintf("%s:5000", registryEndpoints[7].Port),
registryLocal := podmanTest.Podman([]string{"run", "-d", "--net=host", "-p", fmt.Sprintf("%s:5000", registryEndpoints[7].Port),
"--name", "registry7", registry})
registryLocal.WaitWithDefaultTimeout()
Expect(registryLocal.ExitCode()).To(Equal(0))

View File

@@ -1,5 +1,3 @@
// +build !remoteclient
package integration
import (