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 --debug, -D
23 Show additional information
24
25
26 --format=format, -f
27 Change output format to "json" or a Go template.
28
29
31 Run podman info with plain text response:
32
33
34 $ podman info
35 host:
36 arch: amd64
37 buildahVersion: 1.23.0
38 cgroupControllers: []
39 cgroupManager: systemd
40 cgroupVersion: v2
41 conmon:
42 package: conmon-2.0.29-2.fc34.x86_64
43 path: /usr/bin/conmon
44 version: 'conmon version 2.0.29, commit: '
45 cpu_utilization:
46 idle_percent: 96.84
47 system_percent: 0.71
48 user_percent: 2.45
49 cpus: 8
50 distribution:
51 distribution: fedora
52 variant: workstation
53 version: "34"
54 eventLogger: journald
55 hostname: localhost.localdomain
56 idMappings:
57 gidmap:
58 - container_id: 0
59 host_id: 3267
60 size: 1
61 - container_id: 1
62 host_id: 100000
63 size: 65536
64 uidmap:
65 - container_id: 0
66 host_id: 3267
67 size: 1
68 - container_id: 1
69 host_id: 100000
70 size: 65536
71 kernel: 5.13.13-200.fc34.x86_64
72 linkmode: dynamic
73 logDriver: journald
74 memFree: 1833385984
75 memTotal: 16401895424
76 ociRuntime:
77 name: crun
78 package: crun-1.0-1.fc34.x86_64
79 path: /usr/bin/crun
80 version: |-
81 crun version 1.0
82 commit: 139dc6971e2f1d931af520188763e984d6cdfbf8
83 spec: 1.0.0
84 +SYSTEMD +SELINUX +APPARMOR +CAP +SECCOMP +EBPF +CRIU +YAJL
85 os: linux
86 remoteSocket:
87 path: /run/user/3267/podman/podman.sock
88 security:
89 apparmorEnabled: false
90 capabilities: CAP_CHOWN,CAP_DAC_OVERRIDE,CAP_FOWNER,CAP_FSETID,CAP_KILL,CAP_NET_BIND_SERVICE,CAP_SETFCAP,CAP_SETGID,CAP_SETPCAP,CAP_SETUID,CAP_SYS_CHROOT
91 rootless: true
92 seccompEnabled: true
93 seccompProfilePath: /usr/share/containers/seccomp.json
94 selinuxEnabled: true
95 serviceIsRemote: false
96 slirp4netns:
97 executable: /bin/slirp4netns
98 package: slirp4netns-1.1.12-2.fc34.x86_64
99 version: |-
100 slirp4netns version 1.1.12
101 commit: 7a104a101aa3278a2152351a082a6df71f57c9a3
102 libslirp: 4.4.0
103 SLIRP_CONFIG_VERSION_MAX: 3
104 libseccomp: 2.5.0
105 swapFree: 15687475200
106 swapTotal: 16886259712
107 uptime: 47h 15m 9.91s (Approximately 1.96 days)
108 plugins:
109 log:
110 - k8s-file
111 - none
112 - journald
113 network:
114 - bridge
115 - macvlan
116 volume:
117 - local
118 registries:
119 search:
120 - registry.fedoraproject.org
121 - registry.access.redhat.com
122 - docker.io
123 - quay.io
124 store:
125 configFile: /home/dwalsh/.config/containers/storage.conf
126 containerStore:
127 number: 9
128 paused: 0
129 running: 1
130 stopped: 8
131 graphDriverName: overlay
132 graphOptions: {}
133 graphRoot: /home/dwalsh/.local/share/containers/storage
134 graphRootAllocated: 510389125120
135 graphRootUsed: 129170714624
136 graphStatus:
137 Backing Filesystem: extfs
138 Native Overlay Diff: "true"
139 Supports d_type: "true"
140 Using metacopy: "false"
141 imageCopyTmpDir: /home/dwalsh/.local/share/containers/storage/tmp
142 imageStore:
143 number: 5
144 runRoot: /run/user/3267/containers
145 volumePath: /home/dwalsh/.local/share/containers/storage/volumes
146 version:
147 APIVersion: 4.0.0
148 Built: 1631648722
149 BuiltTime: Tue Sep 14 15:45:22 2021
150 GitCommit: 23677f92dd83e96d2bc8f0acb611865fb8b1a56d
151 GoVersion: go1.16.6
152 OsArch: linux/amd64
153 Version: 4.0.0
154
155
156
157 Run podman info with JSON formatted response:
158
159
160 $ podman info --format json
161 {
162 "host": {
163 "arch": "amd64",
164 "buildahVersion": "1.23.0",
165 "cgroupManager": "systemd",
166 "cgroupVersion": "v2",
167 "cgroupControllers": [],
168 "conmon": {
169 "package": "conmon-2.0.29-2.fc34.x86_64",
170 "path": "/usr/bin/conmon",
171 "version": "conmon version 2.0.29, commit: "
172 },
173 "cpus": 8,
174 "distribution": {
175 "distribution": "fedora",
176 "version": "34"
177 },
178 "eventLogger": "journald",
179 "hostname": "localhost.localdomain",
180 "idMappings": {
181 "gidmap": [
182 {
183 "container_id": 0,
184 "host_id": 3267,
185 "size": 1
186 },
187 {
188 "container_id": 1,
189 "host_id": 100000,
190 "size": 65536
191 }
192 ],
193 "uidmap": [
194 {
195 "container_id": 0,
196 "host_id": 3267,
197 "size": 1
198 },
199 {
200 "container_id": 1,
201 "host_id": 100000,
202 "size": 65536
203 }
204 ]
205 },
206 "kernel": "5.13.13-200.fc34.x86_64",
207 "logDriver": "journald",
208 "memFree": 1785753600,
209 "memTotal": 16401895424,
210 "ociRuntime": {
211 "name": "crun",
212 "package": "crun-1.0-1.fc34.x86_64",
213 "path": "/usr/bin/crun",
214 "version": "crun version 1.0\ncommit: 139dc6971e2f1d931af520188763e984d6cdfbf8\nspec: 1.0.0\n+SYSTEMD +SELINUX +APPARMOR +CAP +SECCOMP +EBPF +CRIU +YAJL"
215 },
216 "os": "linux",
217 "remoteSocket": {
218 "path": "/run/user/3267/podman/podman.sock"
219 },
220 "serviceIsRemote": false,
221 "security": {
222 "apparmorEnabled": false,
223 "capabilities": "CAP_CHOWN,CAP_DAC_OVERRIDE,CAP_FOWNER,CAP_FSETID,CAP_KILL,CAP_NET_BIND_SERVICE,CAP_SETFCAP,CAP_SETGID,CAP_SETPCAP,CAP_SETUID,CAP_SYS_CHROOT",
224 "rootless": true,
225 "seccompEnabled": true,
226 "seccompProfilePath": "/usr/share/containers/seccomp.json",
227 "selinuxEnabled": true
228 },
229 "slirp4netns": {
230 "executable": "/bin/slirp4netns",
231 "package": "slirp4netns-1.1.12-2.fc34.x86_64",
232 "version": "slirp4netns version 1.1.12\ncommit: 7a104a101aa3278a2152351a082a6df71f57c9a3\nlibslirp: 4.4.0\nSLIRP_CONFIG_VERSION_MAX: 3\nlibseccomp: 2.5.0"
233 },
234 "swapFree": 15687475200,
235 "swapTotal": 16886259712,
236 "uptime": "47h 17m 29.75s (Approximately 1.96 days)",
237 "linkmode": "dynamic"
238 },
239 "store": {
240 "configFile": "/home/dwalsh/.config/containers/storage.conf",
241 "containerStore": {
242 "number": 9,
243 "paused": 0,
244 "running": 1,
245 "stopped": 8
246 },
247 "graphDriverName": "overlay",
248 "graphOptions": {
249
250 },
251 "graphRoot": "/home/dwalsh/.local/share/containers/storage",
252 "graphStatus": {
253 "Backing Filesystem": "extfs",
254 "Native Overlay Diff": "true",
255 "Supports d_type": "true",
256 "Using metacopy": "false"
257 },
258 "imageCopyTmpDir": "/home/dwalsh/.local/share/containers/storage/tmp",
259 "imageStore": {
260 "number": 5
261 },
262 "runRoot": "/run/user/3267/containers",
263 "volumePath": "/home/dwalsh/.local/share/containers/storage/volumes"
264 },
265 "registries": {
266 "search": [
267 "registry.fedoraproject.org",
268 "registry.access.redhat.com",
269 "docker.io",
270 "quay.io"
271 ]
272 },
273 "plugins": {
274 "volume": [
275 "local"
276 ],
277 "network": [
278 "bridge",
279 "macvlan"
280 ],
281 "log": [
282 "k8s-file",
283 "none",
284 "journald"
285 ]
286 },
287 "version": {
288 "APIVersion": "4.0.0",
289 "Version": "4.0.0",
290 "GoVersion": "go1.16.6",
291 "GitCommit": "23677f92dd83e96d2bc8f0acb611865fb8b1a56d",
292 "BuiltTime": "Tue Sep 14 15:45:22 2021",
293 "Built": 1631648722,
294 "OsArch": "linux/amd64"
295 }
296 }
297
298
299
300 Run podman info and only get the registries information.
301
302
303 $ podman info --format={{".Registries"}}
304 map[registries:[docker.io quay.io registry.fedoraproject.org registry.access.redhat.com]]
305
306
307
309 podman(1), containers-registries.conf(5), containers-storage.conf(5)
310
311
312
313 podman-info(1)()