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