From 41dc0e08d3f77b334670cc2ff3fb1a0c16fd9300 Mon Sep 17 00:00:00 2001 From: Chen Hanxiao Date: Sun, 1 Mar 2015 01:36:00 -0500 Subject: [PATCH] docs: add See Also for description of login/logout and start/stop make them reference to each other. Signed-off-by: Chen Hanxiao --- docs/man/docker-login.1.md | 3 +++ docs/man/docker-logout.1.md | 3 +++ docs/man/docker-start.1.md | 3 +++ docs/man/docker-stop.1.md | 3 +++ 4 files changed, 12 insertions(+) diff --git a/docs/man/docker-login.1.md b/docs/man/docker-login.1.md index 5ee6aa1c6a..e3614cce4a 100644 --- a/docs/man/docker-login.1.md +++ b/docs/man/docker-login.1.md @@ -36,6 +36,9 @@ login to a private registry you can specify this by adding the server name. # docker login localhost:8080 +# See also +**docker-logout(1)** to log out from a Docker registry. + # HISTORY April 2014, Originally compiled by William Henry (whenry at redhat dot com) based on docker.com source material and internal work. diff --git a/docs/man/docker-logout.1.md b/docs/man/docker-logout.1.md index 07dcdcbc33..ac6dc7e84a 100644 --- a/docs/man/docker-logout.1.md +++ b/docs/man/docker-logout.1.md @@ -22,6 +22,9 @@ There are no available options. # docker logout localhost:8080 +# See also +**docker-login(1)** to register or log in to a Docker registry server. + # HISTORY June 2014, Originally compiled by Daniel, Dao Quang Minh (daniel at nitrous dot io) July 2014, updated by Sven Dowideit diff --git a/docs/man/docker-start.1.md b/docs/man/docker-start.1.md index 965c5bcaf7..c2f91d2053 100644 --- a/docs/man/docker-start.1.md +++ b/docs/man/docker-start.1.md @@ -25,6 +25,9 @@ Start a stopped container. **-i**, **--interactive**=*true*|*false* Attach container's STDIN. The default is *false*. +# See also +**docker-stop(1)** to stop a running container. + # HISTORY April 2014, Originally compiled by William Henry (whenry at redhat dot com) based on docker.com source material and internal work. diff --git a/docs/man/docker-stop.1.md b/docs/man/docker-stop.1.md index 09972347af..9b882db49d 100644 --- a/docs/man/docker-stop.1.md +++ b/docs/man/docker-stop.1.md @@ -21,6 +21,9 @@ Stop a running container (Send SIGTERM, and then SIGKILL after **-t**, **--time**=10 Number of seconds to wait for the container to stop before killing it. Default is 10 seconds. +#See also +**docker-start(1)** to restart a stopped container. + # HISTORY April 2014, Originally compiled by William Henry (whenry at redhat dot com) based on docker.com source material and internal work.