Fix detaching from attached container

Text was copied from man-pages https://raw.githubusercontent.com/docker/docker/master/docs/man/docker-attach.1.md

Signed-off-by: Jyrki Puttonen <jyrkiput@gmail.com>
This commit is contained in:
Jyrki Puttonen 2014-09-19 14:57:38 +03:00
parent 39ed048aab
commit 1d2a1598c5

View file

@ -148,10 +148,10 @@ container at the same time - screen sharing style, or quickly view the
progress of your daemonized process. progress of your daemonized process.
You can detach from the container again (and leave it running) with You can detach from the container again (and leave it running) with
`CTRL-C` (for a quiet exit) or `CTRL-\` `CTRL-p CTRL-q` (for a quiet exit), or `CTRL-c` which will send a
to get a stacktrace of the Docker client when it quits. When SIGKILL to the container, or `CTRL-\` to get a stacktrace of the
you detach from the container's process the exit code will be returned Docker client when it quits. When you detach from the container's
to the client. process the exit code will be returned to the client.
To stop a container, use `docker stop`. To stop a container, use `docker stop`.