Browse code

Add stack service and fix typos

Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn>

yuexiao-wang authored on 2016/11/02 18:46:02
Showing 2 changed files
... ...
@@ -27,11 +27,10 @@ Options:
27 27
       --sig-proxy            Proxy all received signals to the process (default true)
28 28
 ```
29 29
 
30
-The `docker attach` command allows you to attach to a running container using
31
-the container's ID or name, either to view its ongoing output or to control it
32
-interactively. You can attach to the same contained process multiple times
33
-simultaneously, screen sharing style, or quickly view the progress of your
34
-detached  process.
30
+Use `docker attach` to attach to a running container using the container's ID
31
+or name, either to view its ongoing output or to control it interactively.
32
+You can attach to the same contained process multiple times simultaneously,
33
+screen sharing style, or quickly view the progress of your detached process.
35 34
 
36 35
 To stop a container, use `CTRL-c`. This key sequence sends `SIGKILL` to the
37 36
 container. If `--sig-proxy` is true (the default),`CTRL-c` sends a `SIGINT` to
... ...
@@ -40,3 +40,4 @@ myapp              2
40 40
 * [stack deploy](stack_deploy.md)
41 41
 * [stack rm](stack_rm.md)
42 42
 * [stack ps](stack_ps.md)
43
+* [stack services](stack_services.md)