summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/pod_create.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/cmd/podman/pod_create.go b/cmd/podman/pod_create.go
index 262a024d0..488fef869 100644
--- a/cmd/podman/pod_create.go
+++ b/cmd/podman/pod_create.go
@@ -71,7 +71,6 @@ var podCreateCommand = cli.Command{
Description: podCreateDescription,
Flags: podCreateFlags,
Action: podCreateCmd,
- HideHelp: true,
SkipArgReorder: true,
UseShortOptionHandling: true,
OnUsageError: usageErrorHandler,
@@ -81,12 +80,6 @@ func podCreateCmd(c *cli.Context) error {
var options []libpod.PodCreateOption
var err error
- // Docker-compatibility: the "-h" flag for run/create is reserved for
- // the hostname (see https://github.com/containers/libpod/issues/1367).
- if c.Bool("help") {
- cli.ShowCommandHelpAndExit(c, "run", 0)
- }
-
if err = validateFlags(c, createFlags); err != nil {
return err
}