.nh .TH buildah\-info "1" "November 2018" "Buildah" .SH NAME .PP buildah\-info \- Display Buildah system information. .SH SYNOPSIS .PP \fBbuildah info\fP [\fIoptions\fP] .SH DESCRIPTION .PP The information displayed pertains to the host and current storage statistics which is useful when reporting issues. .SH OPTIONS .PP \fB\-\-debug, \-D\fP Show additional information. .PP \fB\-\-format\fP \fItemplate\fP .PP Use \fItemplate\fP as a Go template when formatting the output. .SH EXAMPLE .PP Run buildah info response: .PP .RS .nf $ buildah info { "host": { "Distribution": { "distribution": "ubuntu", "version": "18.04" }, "MemTotal": 16702980096, "MemFree": 309428224, "SwapFree": 2146693120, "SwapTotal": 2147479552, "arch": "amd64", "cpus": 4, "hostname": "localhost.localdomain", "kernel": "4.15.0\-36\-generic", "os": "linux", "rootless": false, "uptime": "91h 30m 59.9s (Approximately 3.79 days)" }, "store": { "ContainerStore": { "number": 2 }, "GraphDriverName": "overlay", "GraphOptions": [ "overlay.override\_kernel\_check=true" ], "GraphRoot": "/var/lib/containers/storage", "GraphStatus": { "Backing Filesystem": "extfs", "Native Overlay Diff": "true", "Supports d\_type": "true" }, "ImageStore": { "number": 1 }, "RunRoot": "/run/containers/storage" } } .fi .RE .PP Run buildah info and retrieve only the store information: .PP .RS .nf $ buildah info \-\-format={{".store"}} 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] .fi .RE .SH SEE ALSO .PP buildah(1)