summaryrefslogtreecommitdiff
path: root/docs/reference/commandline/node_ps.md
Commit message (Collapse)AuthorAgeFilesLines
* Standardized formatting of CLI reference commandsMisty Stanley-Jones2017-04-031-22/+30
| | | | | | | | | | | | | Command name should be a H1 Only Description, Examples, and Related Commands should be H2 Changed 'Related information' heading to 'Related commands' since 99% it is only linking commands Added some examples where relevant Signed-off-by: Misty Stanley-Jones <misty@docker.com> (cherry picked from commit 52df69f00d966904ba230dc2e3a0646cc52b7688)
* Remove `--all|-a` from `docker node ps` referenceHarald Albers2017-01-041-1/+0
| | | | | | Signed-off-by: Harald Albers <github@albersweb.de> (cherry picked from commit 364e9002375fca1799180dd76e8074d922dd4044) Signed-off-by: Victor Vieux <vieux@docker.com>
* Add the whole related information for nodeyuexiao-wang2016-12-151-1/+3
| | | | | | Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn> (cherry picked from commit b67b0949ed4b528fef6c3dc059a4bd16d5f2a929) Signed-off-by: Victor Vieux <vieux@docker.com>
* Revert "Add -a option to service/node ps"Vincent Demeester2016-11-301-1/+1
| | | | | | | | This reverts commit 139fff2bf0ebe12b61871ba8ec8be8d51c2338db. Signed-off-by: Vincent Demeester <vincent@sbr.pm> (cherry picked from commit eb55d03f3c321e31c8da993233b2679f47d5b4e1) Signed-off-by: Victor Vieux <victorvieux@gmail.com>
* Add -a option to service/node psJosh Horwitz2016-11-061-1/+1
| | | | Signed-off-by: Josh Horwitz <horwitzja@gmail.com>
* fix frontmatter in reference md filesGaetan de Villele2016-11-021-1/+1
| | | | Signed-off-by: Gaetan de Villele <gdevillele@gmail.com>
* Sync docker/docker refs with files mistakenly edited in docker.github.io repoMisty Stanley-Jones2016-10-201-0/+9
| | | | Signed-off-by: Misty Stanley-Jones <misty@docker.com>
* Convert Markdown frontmatter to YAMLMisty Stanley-Jones2016-10-141-10/+6
| | | | | | | Some frontmatter such as the weights, menu stuff, etc is no longer used 'draft=true' becomes 'published: false' Signed-off-by: Misty Stanley-Jones <misty@docker.com>
* Update docs for `service ps`Yong Tang2016-09-271-17/+17
| | | | | | | | | This fix updates docs for `service ps` as now the TASK ID part has been removed. Also, this fix fixes several incorrect sample output. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* support docker node ps multiNodesallencloud2016-09-101-2/+2
| | | | Signed-off-by: allencloud <allen.sun@daocloud.io>
* make node ps default to self in swarm nodeallencloud2016-08-301-2/+2
| | | | Signed-off-by: allencloud <allen.sun@daocloud.io>
* Add --no-trunc to service/node/stack ps outputJosh Horwitz2016-08-161-0/+1
| | | | Signed-off-by: Josh Horwitz <horwitzja@gmail.com>
* Added shutdown to desired-state docs for filter node/service psJosh Horwitz2016-08-011-1/+1
| | | | | | | | Signed-off-by: Josh Horwitz <horwitzja@gmail.com> $Updated http docs for /tasks filters $Signed-off-by: Josh Horwitz <horwitzja@gmail.com>
* cli: `docker service|node|stack ps` instead of tasksStephen J Day2016-07-271-0/+100
Rather than conflict with the unexposed task model, change the names of the object-oriented task display to `docker <object> ps`. The command works identically to `docker service tasks`. This change is superficial. This provides a more sensical docker experience while not trampling on the task model that may be introduced as a top-level command at a later date. The following is an example of the display using `docker service ps` with a service named `condescending_cori`: ``` $ docker service ps condescending_cori ID NAME SERVICE IMAGE LAST STATE DESIRED STATE NODE e2cd9vqb62qjk38lw65uoffd2 condescending_cori.1 condescending_cori alpine Running 13 minutes ago Running 6c6d232a5d0e ``` The following shows the output for the node on which the command is running: ```console $ docker node ps self ID NAME SERVICE IMAGE LAST STATE DESIRED STATE NODE b1tpbi43k1ibevg2e94bmqo0s mad_kalam.1 mad_kalam apline Accepted 2 seconds ago Accepted 6c6d232a5d0e e2cd9vqb62qjk38lw65uoffd2 condescending_cori.1 condescending_cori alpine Running 12 minutes ago Running 6c6d232a5d0e 4x609m5o0qyn0kgpzvf0ad8x5 furious_davinci.1 furious_davinci redis Running 32 minutes ago Running 6c6d232a5d0e ``` Signed-off-by: Stephen J Day <stephen.day@docker.com>