1
1
% podman-inspect 1
2
2
3
3
## NAME
4
- podman\-inspect - Display a container, image, volume, network, or pod's configuration
4
+ podman\-inspect - Display artifact, container, image, volume, network, or pod's configuration
5
5
6
6
## SYNOPSIS
7
7
**podman inspect** [*options*] *name* [...]
8
8
9
9
## DESCRIPTION
10
10
11
- This displays the low-level information on containers and images identified by name or ID. By default, this renders
12
- all results in a JSON array. If the inspect type is all, the order of inspection is: containers, images, volumes, network, pods.
11
+ This displays the low-level information on artifacts, containers, and images identified by name or ID. By default, this renders
12
+ all results in a JSON array. If the inspect type is all, the order of inspection is: containers, images, volumes, network, pods, artifacts .
13
13
If a container has the same name as an image, then the container JSON is returned, and so on.
14
14
If a format is specified, the given template is executed for each result.
15
15
16
16
For more inspection options, see also
17
+ [podman-artifact-inspect(1)](podman-artifact-inspect.1.md),
17
18
[podman-container-inspect(1)](podman-container-inspect.1.md),
18
19
[podman-image-inspect(1)](podman-image-inspect.1.md),
19
20
[podman-network-inspect(1)](podman-network-inspect.1.md),
@@ -35,7 +36,7 @@ In addition to normal output, display the total file size if the type is a conta
35
36
36
37
#### **--type**, **-t**=*type*
37
38
38
- Return JSON for the specified type. Type can be 'container', 'image', 'volume', 'network', 'pod', or 'all' (default: all)
39
+ Return JSON for the specified type. Type can be 'artifact', ' container', 'image', 'volume', 'network', 'pod', or 'all' (default: all)
39
40
(Only meaningful when invoked as *podman inspect*)
40
41
41
42
## EXAMPLES
@@ -164,8 +165,22 @@ Inspect the specified network for the `Name` format specifier:
164
165
myNetwork
165
166
```
166
167
168
+ Inspect the specified artifact:
169
+ ```
170
+ # podman inspect quay.io/myimage/myartifact:latest --type artifact
171
+ {
172
+ "Manifest": {
173
+ "schemaVersion": 2,
174
+ "mediaType": "application/vnd.oci.image.manifest.v1+json",
175
+ ...
176
+ },
177
+ "Name": "quay.io/myimage/myartifact:latest",
178
+ "Digest": "sha256:..."
179
+ }
180
+ ```
181
+
167
182
## SEE ALSO
168
- **[podman(1)](podman.1.md)**, **[podman-container-inspect(1)](podman-container-inspect.1.md)**, **[podman-image-inspect(1)](podman-image-inspect.1.md)**, **[podman-network-inspect(1)](podman-network-inspect.1.md)**, **[podman-pod-inspect(1)](podman-pod-inspect.1.md)**, **[podman-volume-inspect(1)](podman-volume-inspect.1.md)**
183
+ **[podman(1)](podman.1.md)**, **[podman-artifact-inspect(1)](podman-artifact-inspect.1.md)**, **[podman- container-inspect(1)](podman-container-inspect.1.md)**, **[podman-image-inspect(1)](podman-image-inspect.1.md)**, **[podman-network-inspect(1)](podman-network-inspect.1.md)**, **[podman-pod-inspect(1)](podman-pod-inspect.1.md)**, **[podman-volume-inspect(1)](podman-volume-inspect.1.md)**
169
184
170
185
## HISTORY
171
186
July 2017, Originally compiled by Dan Walsh <
[email protected] >
0 commit comments