diff options
Diffstat (limited to 'cmd/podman/attach.go')
-rw-r--r-- | cmd/podman/attach.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/attach.go b/cmd/podman/attach.go index ecba91a90..c29886825 100644 --- a/cmd/podman/attach.go +++ b/cmd/podman/attach.go @@ -28,6 +28,7 @@ var ( func init() { attachCommand.Command = _attachCommand + attachCommand.SetUsageTemplate(UsageTemplate()) flags := attachCommand.Flags() flags.StringVar(&attachCommand.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 _") flags.BoolVar(&attachCommand.NoStdin, "no-stdin", false, "Do not attach STDIN. The default is false") |