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.19.0-dev
38 cgroupManager: systemd
39 cgroupVersion: v2
40 conmon:
41 package: conmon-2.0.22-2.fc33.x86_64
42 path: /usr/bin/conmon
43 version: 'conmon version 2.0.22, commit: 1be6c73605006a85f7ed60b7f76a51e28eb67e01'
44 cpus: 8
45 distribution:
46 distribution: fedora
47 version: "33"
48 eventLogger: journald
49 hostname: localhost.localdomain
50 idMappings:
51 gidmap:
52 - container_id: 0
53 host_id: 3267
54 size: 1
55 - container_id: 1
56 host_id: 100000
57 size: 65536
58 uidmap:
59 - container_id: 0
60 host_id: 3267
61 size: 1
62 - container_id: 1
63 host_id: 100000
64 size: 65536
65 kernel: 5.9.11-200.fc33.x86_64
66 linkmode: dynamic
67 memFree: 837505024
68 memTotal: 16416481280
69 ociRuntime:
70 name: crun
71 package: crun-0.16-1.fc33.x86_64
72 path: /usr/bin/crun
73 version: |-
74 crun version 0.16
75 commit: eb0145e5ad4d8207e84a327248af76663d4e50dd
76 spec: 1.0.0
77 +SYSTEMD +SELINUX +APPARMOR +CAP +SECCOMP +EBPF +YAJL
78 os: linux
79 remoteSocket:
80 exists: true
81 path: /run/user/3267/podman/podman.sock
82 security:
83 apparmorEnabled: false
84 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
85 rootless: true
86 seccompEnabled: true
87 selinuxEnabled: true
88 slirp4netns:
89 executable: /bin/slirp4netns
90 package: slirp4netns-1.1.4-4.dev.giteecccdb.fc33.x86_64
91 version: |-
92 slirp4netns version 1.1.4+dev
93 commit: eecccdb96f587b11d7764556ffacfeaffe4b6e11
94 libslirp: 4.3.1
95 SLIRP_CONFIG_VERSION_MAX: 3
96 libseccomp: 2.5.0
97 swapFree: 6509203456
98 swapTotal: 12591292416
99 uptime: 264h 14m 32.73s (Approximately 11.00 days)
100 registries:
101 search:
102 - registry.fedoraproject.org
103 - registry.access.redhat.com
104 - registry.centos.org
105 - docker.io
106 store:
107 configFile: /home/dwalsh/.config/containers/storage.conf
108 containerStore:
109 number: 3
110 paused: 0
111 running: 0
112 stopped: 3
113 graphDriverName: overlay
114 graphOptions:
115 overlay.mount_program:
116 Executable: /home/dwalsh/bin/fuse-overlayfs
117 Package: Unknown
118 Version: |-
119 fusermount3 version: 3.9.3
120 fuse-overlayfs: version 0.7.2
121 FUSE library version 3.9.3
122 using FUSE kernel interface version 7.31
123 graphRoot: /home/dwalsh/.local/share/containers/storage
124 graphStatus:
125 Backing Filesystem: extfs
126 Native Overlay Diff: "false"
127 Supports d_type: "true"
128 Using metacopy: "false"
129 imageStore:
130 number: 77
131 runRoot: /run/user/3267/containers
132 volumePath: /home/dwalsh/.local/share/containers/storage/volumes
133 version:
134 APIVersion: 3.0.0
135 Built: 1608562922
136 BuiltTime: Mon Dec 21 10:02:02 2020
137 GitCommit: d6925182cdaf94225908a386d02eae8fd3e01123-dirty
138 GoVersion: go1.15.5
139 OsArch: linux/amd64
140 Version: 3.0.0-dev
141
142
143
144
145 Run podman info with JSON formatted response:
146
147
148 {
149 "host": {
150 "arch": "amd64",
151 "buildahVersion": "1.19.0-dev",
152 "cgroupManager": "systemd",
153 "cgroupVersion": "v2",
154 "conmon": {
155 "package": "conmon-2.0.22-2.fc33.x86_64",
156 "path": "/usr/bin/conmon",
157 "version": "conmon version 2.0.22, commit: 1be6c73605006a85f7ed60b7f76a51e28eb67e01"
158 },
159 "cpus": 8,
160 "distribution": {
161 "distribution": "fedora",
162 "version": "33"
163 },
164 "eventLogger": "journald",
165 "hostname": "localhost.localdomain",
166 "idMappings": {
167 "gidmap": [
168 {
169 "container_id": 0,
170 "host_id": 3267,
171 "size": 1
172 },
173 {
174 "container_id": 1,
175 "host_id": 100000,
176 "size": 65536
177 }
178 ],
179 "uidmap": [
180 {
181 "container_id": 0,
182 "host_id": 3267,
183 "size": 1
184 },
185 {
186 "container_id": 1,
187 "host_id": 100000,
188 "size": 65536
189 }
190 ]
191 },
192 "kernel": "5.9.11-200.fc33.x86_64",
193 "memFree": 894574592,
194 "memTotal": 16416481280,
195 "ociRuntime": {
196 "name": "crun",
197 "package": "crun-0.16-1.fc33.x86_64",
198 "path": "/usr/bin/crun",
199 "version": "crun version 0.16\ncommit: eb0145e5ad4d8207e84a327248af76663d4e50dd\nspec: 1.0.0\n+SYSTEMD +SELINUX +APPARMOR +CAP +SECCOMP +EBPF +YAJL"
200 },
201 "os": "linux",
202 "remoteSocket": {
203 "path": "/run/user/3267/podman/podman.sock",
204 "exists": true
205 },
206 "security": {
207 "apparmorEnabled": false,
208 "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",
209 "rootless": true,
210 "seccompEnabled": true,
211 "selinuxEnabled": true
212 },
213 "slirp4netns": {
214 "executable": "/bin/slirp4netns",
215 "package": "slirp4netns-1.1.4-4.dev.giteecccdb.fc33.x86_64",
216 "version": "slirp4netns version 1.1.4+dev\ncommit: eecccdb96f587b11d7764556ffacfeaffe4b6e11\nlibslirp: 4.3.1\nSLIRP_CONFIG_VERSION_MAX: 3\nlibseccomp: 2.5.0"
217 },
218 "swapFree": 6509203456,
219 "swapTotal": 12591292416,
220 "uptime": "264h 13m 12.39s (Approximately 11.00 days)",
221 "linkmode": "dynamic"
222 },
223 "store": {
224 "configFile": "/home/dwalsh/.config/containers/storage.conf",
225 "containerStore": {
226 "number": 3,
227 "paused": 0,
228 "running": 0,
229 "stopped": 3
230 },
231 "graphDriverName": "overlay",
232 "graphOptions": {
233 "overlay.mount_program": {
234 "Executable": "/home/dwalsh/bin/fuse-overlayfs",
235 "Package": "Unknown",
236 "Version": "fusermount3 version: 3.9.3\nfuse-overlayfs: version 0.7.2\nFUSE library version 3.9.3\nusing FUSE kernel interface version 7.31"
237 }
238 },
239 "graphRoot": "/home/dwalsh/.local/share/containers/storage",
240 "graphStatus": {
241 "Backing Filesystem": "extfs",
242 "Native Overlay Diff": "false",
243 "Supports d_type": "true",
244 "Using metacopy": "false"
245 },
246 "imageStore": {
247 "number": 77
248 },
249 "runRoot": "/run/user/3267/containers",
250 "volumePath": "/home/dwalsh/.local/share/containers/storage/volumes"
251 },
252 "registries": {
253 "search": [
254 "registry.fedoraproject.org",
255 "registry.access.redhat.com",
256 "registry.centos.org",
257 "docker.io"
258 ]
259 },
260 "version": {
261 "APIVersion": "3.0.0",
262 "Version": "3.0.0-dev",
263 "GoVersion": "go1.15.5",
264 "GitCommit": "d6925182cdaf94225908a386d02eae8fd3e01123-dirty",
265 "BuiltTime": "Mon Dec 21 10:02:02 2020",
266 "Built": 1608562922,
267 "OsArch": "linux/amd64"
268 }
269 }
270
271
272
273 Run podman info and only get the registries information.
274
275
276 $ podman info --format={{".Registries"}}
277 map[registries:[docker.io quay.io registry.fedoraproject.org registry.access.redhat.com]]
278
279
280
282 podman(1), containers-registries.conf(5), containers-storage.conf(5)
283
284
285
286 podman-info(1)()