From 1d2a1598c54d9ca8d3d02ec5e7b0231a8cf153d3 Mon Sep 17 00:00:00 2001 From: Jyrki Puttonen Date: Fri, 19 Sep 2014 14:57:38 +0300 Subject: [PATCH] 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 --- docs/sources/reference/commandline/cli.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/sources/reference/commandline/cli.md b/docs/sources/reference/commandline/cli.md index 74f1b7b3e5..d5f02bc4a0 100644 --- a/docs/sources/reference/commandline/cli.md +++ b/docs/sources/reference/commandline/cli.md @@ -148,10 +148,10 @@ container at the same time - screen sharing style, or quickly view the progress of your daemonized process. You can detach from the container again (and leave it running) with -`CTRL-C` (for a quiet exit) or `CTRL-\` -to get a stacktrace of the Docker client when it quits. When -you detach from the container's process the exit code will be returned -to the client. +`CTRL-p CTRL-q` (for a quiet exit), or `CTRL-c` which will send a +SIGKILL to the container, or `CTRL-\` to get a stacktrace of the +Docker client when it quits. When you detach from the container's +process the exit code will be returned to the client. To stop a container, use `docker stop`.