aboutsummaryrefslogtreecommitdiff
path: root/cmd/podman/run.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-01-16 17:07:56 +0100
committerGitHub <noreply@github.com>2020-01-16 17:07:56 +0100
commit1d7176b135fab2da4800b11f91b912963aa0288b (patch)
treef7cbc5cfe8423fe6998fd51783d0db159533cbbc /cmd/podman/run.go
parentdb00ee97e950290a6bc5d669cde0cbc54bb94afe (diff)
parent45e9a6b12e74d50b8f6ab271c7800cb165f451e4 (diff)
downloadpodman-1d7176b135fab2da4800b11f91b912963aa0288b.tar.gz
podman-1d7176b135fab2da4800b11f91b912963aa0288b.tar.bz2
podman-1d7176b135fab2da4800b11f91b912963aa0288b.zip
Merge pull request #4869 from rhatdan/network
Remove c.String(net)
Diffstat (limited to 'cmd/podman/run.go')
-rw-r--r--cmd/podman/run.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/run.go b/cmd/podman/run.go
index a6468f225..caa594682 100644
--- a/cmd/podman/run.go
+++ b/cmd/podman/run.go
@@ -25,7 +25,7 @@ var (
return runCmd(&runCommand)
},
Example: `podman run imageID ls -alF /etc
- podman run --net=host imageID dnf -y install java
+ podman run --network=host imageID dnf -y install java
podman run --volume /var/hostdir:/var/ctrdir -i -t fedora /bin/bash`,
}
)