Merge pull request #6544 from mheon/sigproxy_docs

Update --sig-proxy documentation
This commit is contained in:
Sven Dowideit
2014-06-30 13:16:38 +10:00
5 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -1733,7 +1733,7 @@ func (cli *DockerCli) CmdAttach(args ...string) error {
var (
cmd = cli.Subcmd("attach", "[OPTIONS] CONTAINER", "Attach to a running container")
noStdin = cmd.Bool([]string{"#nostdin", "-no-stdin"}, false, "Do not attach stdin")
proxy = cmd.Bool([]string{"#sig-proxy", "-sig-proxy"}, true, "Proxify all received signal to the process (even in non-tty mode)")
proxy = cmd.Bool([]string{"#sig-proxy", "-sig-proxy"}, true, "Proxify received signals to the process (even in non-tty mode). SIGCHLD is not proxied")
)
if err := cmd.Parse(args); err != nil {