1buildah-info(1) General Commands Manual buildah-info(1)
2
3
4
6 buildah-info - Display Buildah system information.
7
8
10 buildah info [options]
11
12
14 The information displayed pertains to the host and current storage sta‐
15 tistics which is useful when reporting issues.
16
17
19 --debug, -d
20
21
22 Show additional information.
23
24
25 --format template
26
27
28 Use template as a Go template when formatting the output.
29
30
32 Run buildah info response:
33
34
35 $ buildah info
36 {
37 "host": {
38 "Distribution": {
39 "distribution": "ubuntu",
40 "version": "18.04"
41 },
42 "MemTotal": 16702980096,
43 "MemFree": 309428224,
44 "SwapFree": 2146693120,
45 "SwapTotal": 2147479552,
46 "arch": "amd64",
47 "cpus": 4,
48 "hostname": "localhost.localdomain",
49 "kernel": "4.15.0-36-generic",
50 "os": "linux",
51 "rootless": false,
52 "uptime": "91h 30m 59.9s (Approximately 3.79 days)"
53 },
54 "store": {
55 "ContainerStore": {
56 "number": 2
57 },
58 "GraphDriverName": "overlay",
59 "GraphOptions": [
60 "overlay.override_kernel_check=true"
61 ],
62 "GraphRoot": "/var/lib/containers/storage",
63 "GraphStatus": {
64 "Backing Filesystem": "extfs",
65 "Native Overlay Diff": "true",
66 "Supports d_type": "true"
67 },
68 "ImageStore": {
69 "number": 1
70 },
71 "RunRoot": "/run/containers/storage"
72 }
73 }
74
75
76
77 Run buildah info and retrieve only the store information:
78
79
80 $ buildah info --format={{".store"}}
81 map[GraphOptions:[overlay.override_kernel_check=true] GraphStatus:map[Backing Filesystem:extfs Supports d_type:true Native Overlay Diff:true] ImageStore:map[number:1] ContainerStore:map[number:2] GraphRoot:/var/lib/containers/storage RunRoot:/run/containers/storage GraphDriverName:overlay]
82
83
84
86 buildah(1)
87
88
89
90Buildah November 2018 buildah-info(1)