1podman-info(1)() podman-info(1)()
2
3
4
6 podman-info - Displays Podman related system information
7
8
10 podman info [options]
11
12
13 podman system info [options]
14
15
17 Displays information pertinent to the host, current storage stats, con‐
18 figured container registries, and build of podman.
19
20
22 -D, --debug
23
24
25 Show additional information
26
27
28 -f, --format=format
29
30
31 Change output format to "json" or a Go template.
32
33
35 Run podman info with plain text response:
36
37
38 $ podman info
39 host:
40 BuildahVersion: 1.4-dev
41 Conmon:
42 package: Unknown
43 path: /usr/libexec/podman/conmon
44 version: 'conmon version 1.12.0-dev, commit: d724f3d54ad2d95b6de741085d4990190ebfd7ff'
45 Distribution:
46 distribution: fedora
47 version: "28"
48 MemFree: 1271083008
49 MemTotal: 33074233344
50 OCIRuntime:
51 package: runc-1.0.0-51.dev.gitfdd8055.fc28.x86_64
52 path: /usr/bin/runc
53 version: 'runc version spec: 1.0.0'
54 SwapFree: 34309664768
55 SwapTotal: 34359734272
56 arch: amd64
57 cpus: 8
58 hostname: localhost.localdomain
59 kernel: 4.18.7-200.fc28.x86_64
60 os: linux
61 uptime: 218h 49m 33.66s (Approximately 9.08 days)
62 registries:
63 blocked: null
64 insecure: null
65 search:
66 - quay.io
67 - registry.fedoraproject.org
68 - docker.io
69 - registry.redhat.io
70 store:
71 ConfigFile: /etc/containers/storage.conf
72 ContainerStore:
73 number: 37
74 GraphDriverName: overlay
75 GraphOptions:
76 - overlay.mountopt=nodev
77 - overlay.override_kernel_check=true
78 GraphRoot: /var/lib/containers/storage
79 GraphStatus:
80 Backing Filesystem: extfs
81 Native Overlay Diff: "true"
82 Supports d_type: "true"
83 ImageStore:
84 number: 17
85 RunRoot: /var/run/containers/storage
86
87
88
89
90 Run podman info with JSON formatted response:
91
92
93 {
94 "host": {
95 "BuildahVersion": "1.4-dev",
96 "Conmon": {
97 "package": "Unknown",
98 "path": "/usr/libexec/podman/conmon",
99 "version": "conmon version 1.12.0-dev, commit: d724f3d54ad2d95b6de741085d4990190ebfd7ff"
100 },
101 "Distribution": {
102 "distribution": "fedora",
103 "version": "28"
104 },
105 "MemFree": 1204109312,
106 "MemTotal": 33074233344,
107 "OCIRuntime": {
108 "package": "runc-1.0.0-51.dev.gitfdd8055.fc28.x86_64",
109 "path": "/usr/bin/runc",
110 "version": "runc version spec: 1.0.0"
111 },
112 "SwapFree": 34309664768,
113 "SwapTotal": 34359734272,
114 "arch": "amd64",
115 "cpus": 8,
116 "hostname": "localhost.localdomain",
117 "kernel": "4.18.7-200.fc28.x86_64",
118 "os": "linux",
119 "uptime": "218h 50m 35.02s (Approximately 9.08 days)"
120 },
121 "insecure registries": {
122 "registries": []
123 },
124 "registries": {
125 "registries": [
126 "quay.io",
127 "registry.fedoraproject.org",
128 "docker.io",
129 "registry.access.redhat.com"
130 ]
131 },
132 "store": {
133 "ContainerStore": {
134 "number": 37
135 },
136 "GraphDriverName": "overlay",
137 "GraphOptions": [
138 "overlay.mountopt=nodev",
139 "overlay.override_kernel_check=true"
140 ],
141 "GraphRoot": "/var/lib/containers/storage",
142 "GraphStatus": {
143 "Backing Filesystem": "extfs",
144 "Native Overlay Diff": "true",
145 "Supports d_type": "true"
146 },
147 "ImageStore": {
148 "number": 17
149 },
150 "RunRoot": "/var/run/containers/storage"
151 }
152 }
153
154
155
156 Run podman info and only get the registries information.
157
158
159 $ podman info --format={{".registries"}}
160 map[registries:[docker.io quay.io registry.fedoraproject.org registry.access.redhat.com]]
161
162
163
165 podman(1), containers-registries.conf(5), containers-storage.conf(5)
166
167
168
169 podman-info(1)()