summaryrefslogtreecommitdiffstats
path: root/share/man/container-list.1.txt
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@open-infrastructure.net>2016-06-16 06:10:09 +0000
committerDaniel Baumann <daniel.baumann@open-infrastructure.net>2016-07-01 09:21:13 +0000
commit1d0e8aa25cd6fa974892c397fe46ae21efd03fb1 (patch)
tree2fb4baa708a783a96ce4d8424d157c3797901f7a /share/man/container-list.1.txt
parentReleasing version 20160615. (diff)
downloadcompute-tools-1d0e8aa25cd6fa974892c397fe46ae21efd03fb1.tar.xz
compute-tools-1d0e8aa25cd6fa974892c397fe46ae21efd03fb1.zip
Showing only local containers by default in container list command.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to 'share/man/container-list.1.txt')
-rw-r--r--share/man/container-list.1.txt14
1 files changed, 10 insertions, 4 deletions
diff --git a/share/man/container-list.1.txt b/share/man/container-list.1.txt
index 5474da4..0e3ea8a 100644
--- a/share/man/container-list.1.txt
+++ b/share/man/container-list.1.txt
@@ -39,10 +39,10 @@ The container list command lists container on the system.
OPTIONS
-------
-The following container options are available:
+The following container options are available, defaults to *--started --stopped*:
*-a, --all*::
- List all available container.
+ List all available container (started, stopped, and other).
*-f, --format='FORMAT'*::
Use format to list container. Currently available formats are 'short' or 'full' (default).
@@ -61,8 +61,14 @@ The following container options are available:
EXAMPLES
--------
-*List all started container on the the system as a machine-readable list:*::
- sudo container list --all --format=short
+*List all started and stopped containers of the local system:*::
+ sudo container list
+
+*List all started and stopped containers of the local system as a machine-readable list:*::
+ sudo container list -f short
+
+*List all started and other containers:*::
+ sudo container list -s -o
SEE ALSO