Add stack service and fix typos

Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn>
This commit is contained in:
yuexiao-wang 2016-11-02 17:46:02 +08:00 committed by Tibor Vass
parent 8da2e039e5
commit d74d024775
2 changed files with 5 additions and 5 deletions

View File

@ -27,11 +27,10 @@ Options:
--sig-proxy Proxy all received signals to the process (default true) --sig-proxy Proxy all received signals to the process (default true)
``` ```
The `docker attach` command allows you to attach to a running container using Use `docker attach` to attach to a running container using the container's ID
the container's ID or name, either to view its ongoing output or to control it or name, either to view its ongoing output or to control it interactively.
interactively. You can attach to the same contained process multiple times You can attach to the same contained process multiple times simultaneously,
simultaneously, screen sharing style, or quickly view the progress of your screen sharing style, or quickly view the progress of your detached process.
detached process.
To stop a container, use `CTRL-c`. This key sequence sends `SIGKILL` to the To stop a container, use `CTRL-c`. This key sequence sends `SIGKILL` to the
container. If `--sig-proxy` is true (the default),`CTRL-c` sends a `SIGINT` to container. If `--sig-proxy` is true (the default),`CTRL-c` sends a `SIGINT` to

View File

@ -40,3 +40,4 @@ myapp 2
* [stack deploy](stack_deploy.md) * [stack deploy](stack_deploy.md)
* [stack rm](stack_rm.md) * [stack rm](stack_rm.md)
* [stack ps](stack_ps.md) * [stack ps](stack_ps.md)
* [stack services](stack_services.md)