1runc-list(8) System Manager's Manual runc-list(8)
2
3
4
6 runc-list - lists containers
7
8
9
11 runc list [option ...]
12
13
14
16 The list commands lists containers. Note that a global --root option
17 can be specified to change the default root. For the description of
18 --root, see runc(8).
19
20
21
23 --format|-f table|json
24 Specify the format. Default is table. The json format provides
25 more details.
26
27
28 --quiet|-q
29 Only display container IDs.
30
31
32
34 To list containers created with the default root:
35
36
37 # runc list
38
39
40
41 To list containers in a human-readable JSON (with the help of jq(1)
42 utility):
43
44
45 # runc list -f json | jq
46
47
48
49 To list containers created with the root of /tmp/myroot:
50
51
52 # runc --root /tmp/myroot
53
54
55
56
58 runc(8).
59
60
61
62 runc-list(8)