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 docker.io:
64 Blocked: true
65 Insecure: true
66 Location: docker.io
67 MirrorByDigestOnly: false
68 Mirrors:
69 - Insecure: true
70 Location: example2.io/example/ubi8-minimal
71 Prefix: docker.io
72 redhat.com:
73 Blocked: false
74 Insecure: false
75 Location: registry.access.redhat.com/ubi8
76 MirrorByDigestOnly: true
77 Mirrors:
78 - Insecure: false
79 Location: example.io/example/ubi8-minimal
80 - Insecure: true
81 Location: example3.io/example/ubi8-minimal
82 Prefix: redhat.com
83 store:
84 ConfigFile: /etc/containers/storage.conf
85 ContainerStore:
86 number: 37
87 GraphDriverName: overlay
88 GraphOptions:
89 - overlay.mountopt=nodev
90 - overlay.override_kernel_check=true
91 GraphRoot: /var/lib/containers/storage
92 GraphStatus:
93 Backing Filesystem: extfs
94 Native Overlay Diff: "true"
95 Supports d_type: "true"
96 ImageStore:
97 number: 17
98 RunRoot: /var/run/containers/storage
99
100
101
102
103 Run podman info with JSON formatted response:
104
105
106 {
107 "host": {
108 "BuildahVersion": "1.4-dev",
109 "Conmon": {
110 "package": "Unknown",
111 "path": "/usr/libexec/podman/conmon",
112 "version": "conmon version 1.12.0-dev, commit: d724f3d54ad2d95b6de741085d4990190ebfd7ff"
113 },
114 "Distribution": {
115 "distribution": "fedora",
116 "version": "28"
117 },
118 "MemFree": 1204109312,
119 "MemTotal": 33074233344,
120 "OCIRuntime": {
121 "package": "runc-1.0.0-51.dev.gitfdd8055.fc28.x86_64",
122 "path": "/usr/bin/runc",
123 "version": "runc version spec: 1.0.0"
124 },
125 "SwapFree": 34309664768,
126 "SwapTotal": 34359734272,
127 "arch": "amd64",
128 "cpus": 8,
129 "hostname": "localhost.localdomain",
130 "kernel": "4.18.7-200.fc28.x86_64",
131 "os": "linux",
132 "uptime": "218h 50m 35.02s (Approximately 9.08 days)"
133 },
134 "insecure registries": {
135 "registries": []
136 },
137 "registries": {
138 "registries": [
139 "quay.io",
140 "registry.fedoraproject.org",
141 "docker.io",
142 "registry.access.redhat.com"
143 ]
144 },
145 "store": {
146 "ContainerStore": {
147 "number": 37
148 },
149 "GraphDriverName": "overlay",
150 "GraphOptions": [
151 "overlay.mountopt=nodev",
152 "overlay.override_kernel_check=true"
153 ],
154 "GraphRoot": "/var/lib/containers/storage",
155 "GraphStatus": {
156 "Backing Filesystem": "extfs",
157 "Native Overlay Diff": "true",
158 "Supports d_type": "true"
159 },
160 "ImageStore": {
161 "number": 17
162 },
163 "RunRoot": "/var/run/containers/storage"
164 }
165 }
166
167
168
169 Run podman info and only get the registries information.
170
171
172 $ podman info --format={{".Registries"}}
173 map[registries:[docker.io quay.io registry.fedoraproject.org registry.access.redhat.com]]
174
175
176
178 podman(1), containers-registries.conf(5), containers-storage.conf(5)
179
180
181
182 podman-info(1)()