summaryrefslogtreecommitdiff
path: root/cmd/podman/common
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2020-10-05 06:13:28 -0400
committerDaniel J Walsh <dwalsh@redhat.com>2020-10-07 10:19:08 -0400
commitccc5bc167fa2c140e33963bb5cce99f40ff00281 (patch)
tree5cd6445f92921c7015fbe0b9663983165bd58db3 /cmd/podman/common
parenta7500e54a4646c7db477349e2530ac13df77b8fa (diff)
downloadpodman-ccc5bc167fa2c140e33963bb5cce99f40ff00281.tar.gz
podman-ccc5bc167fa2c140e33963bb5cce99f40ff00281.tar.bz2
podman-ccc5bc167fa2c140e33963bb5cce99f40ff00281.zip
Attempt to turn on some more remote tests
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cmd/podman/common')
-rw-r--r--cmd/podman/common/create.go10
1 files changed, 6 insertions, 4 deletions
diff --git a/cmd/podman/common/create.go b/cmd/podman/common/create.go
index bb5eb9f38..0ec422313 100644
--- a/cmd/podman/common/create.go
+++ b/cmd/podman/common/create.go
@@ -166,10 +166,12 @@ func GetCreateFlags(cf *ContainerCLIOpts) *pflag.FlagSet {
"env", "e", containerConfig.Env(),
"Set environment variables in container",
)
- createFlags.BoolVar(
- &cf.EnvHost,
- "env-host", false, "Use all current host environment variables in container",
- )
+ if !registry.IsRemote() {
+ createFlags.BoolVar(
+ &cf.EnvHost,
+ "env-host", false, "Use all current host environment variables in container",
+ )
+ }
createFlags.StringSliceVar(
&cf.EnvFile,
"env-file", []string{},