Skip to content

Commit

Permalink
Update CLI refs for 17.06
Browse files Browse the repository at this point in the history
  • Loading branch information
Misty Stanley-Jones authored and Misty Stanley-Jones committed Jun 7, 2017
1 parent 76f2be3 commit a22593b
Show file tree
Hide file tree
Showing 90 changed files with 2,521 additions and 909 deletions.
2 changes: 2 additions & 0 deletions _data/engine-cli/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ cname:
- docker build
- docker checkpoint
- docker commit
- docker config
- docker container
- docker cp
- docker create
Expand Down Expand Up @@ -58,6 +59,7 @@ clink:
- docker_build.yaml
- docker_checkpoint.yaml
- docker_commit.yaml
- docker_config.yaml
- docker_container.yaml
- docker_cp.yaml
- docker_create.yaml
Expand Down
16 changes: 12 additions & 4 deletions _data/engine-cli/docker_attach.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
command: docker attach
short: Attach to a running container
short: Attach local standard input, output, and error streams to a running container
long: |-
Use `docker attach` to attach to a running container using the container's ID
or name, either to view its ongoing output or to control it interactively.
Use `docker attach` to attach your terminal's standard input, output, and error
(or any combination of the three) to a running container using the container's
ID or name. This allows you to view its ongoing output or to control it
interactively, as though the commands were running directly in your terminal.
> **Note:**
> The `attach` command will display the output of the `ENTRYPOINT/CMD` process. This
> can appear as if the attach command is hung when in fact the process may simply
> not be interacting with the terminal at that time.
You can attach to the same contained process multiple times simultaneously,
screen sharing style, or quickly view the progress of your detached process.
even as a different user with the appropriate permissions.
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
Expand Down
Loading

0 comments on commit a22593b

Please sign in to comment.