diff options
Diffstat (limited to 'cmd/podman/start.go')
-rw-r--r-- | cmd/podman/start.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/start.go b/cmd/podman/start.go index 3a03db47a..344719fca 100644 --- a/cmd/podman/start.go +++ b/cmd/podman/start.go @@ -36,6 +36,7 @@ var ( func init() { startCommand.Command = _startCommand + startCommand.SetUsageTemplate(UsageTemplate()) flags := startCommand.Flags() flags.BoolVarP(&startCommand.Attach, "attach", "a", false, "Attach container's STDOUT and STDERR") flags.StringVar(&startCommand.DetachKeys, "detach-keys", "", "Override the key sequence for detaching a container. Format is a single character [a-Z] or ctrl-<value> where <value> is one of: a-z, @, ^, [, , or _") |