1buildah-info(1)             General Commands Manual            buildah-info(1)
2
3
4

NAME

6       buildah-info - Display Buildah system information.
7
8

SYNOPSIS

10       buildah info [options]
11
12

DESCRIPTION

14       The information displayed pertains to the host and current storage sta‐
15       tistics which is useful when reporting issues.
16
17

OPTIONS

19       --debug, -D Show additional information.
20
21
22       --format template
23
24
25       Use template as a Go template when formatting the output.
26
27

EXAMPLE

29       Run buildah info response:
30
31
32              $ buildah info
33              {
34                  "host": {
35                      "Distribution": {
36                          "distribution": "ubuntu",
37                          "version": "18.04"
38                      },
39                      "MemTotal": 16702980096,
40                      "MemFree": 309428224,
41                      "SwapFree": 2146693120,
42                      "SwapTotal": 2147479552,
43                      "arch": "amd64",
44                      "cpus": 4,
45                      "hostname": "localhost.localdomain",
46                      "kernel": "4.15.0-36-generic",
47                      "os": "linux",
48                      "rootless": false,
49                      "uptime": "91h 30m 59.9s (Approximately 3.79 days)"
50                  },
51                  "store": {
52                      "ContainerStore": {
53                          "number": 2
54                      },
55                      "GraphDriverName": "overlay",
56                      "GraphOptions": [
57                          "overlay.override_kernel_check=true"
58                      ],
59                      "GraphRoot": "/var/lib/containers/storage",
60                      "GraphStatus": {
61                          "Backing Filesystem": "extfs",
62                          "Native Overlay Diff": "true",
63                          "Supports d_type": "true"
64                      },
65                      "ImageStore": {
66                          "number": 1
67                      },
68                      "RunRoot": "/run/containers/storage"
69                  }
70              }
71
72
73
74       Run buildah info and retrieve only the store information:
75
76
77              $ buildah info --format={{".store"}}
78              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]
79
80
81

SEE ALSO

83       buildah(1)
84
85
86
87Buildah                          November 2018                 buildah-info(1)
Impressum