1podman-pod-inspect(1)()                                podman-pod-inspect(1)()
2
3
4

NAME

6       podman-pod-inspect - Displays information describing a pod
7
8

SYNOPSIS

10       podman pod inspect [options] pod ...
11
12

DESCRIPTION

14       Displays  configuration  and  state  information about a given pod.  It
15       also displays information about containers that belong to the pod.
16
17

OPTIONS

19       --latest, -l
20
21
22       Instead of providing the pod name or ID, use the last created  pod.  If
23       you  use  methods other than Podman to run pods such as CRI-O, the last
24       started pod could be from either of those methods.
25
26
27       The latest option is not supported on the remote client.
28
29

EXAMPLE

31              # podman pod inspect foobar
32              {
33                   "Config": {
34                        "id": "3513ca70583dd7ef2bac83331350f6b6c47d7b4e526c908e49d89ebf720e4693",
35                        "name": "foobar",
36                        "labels": {},
37                        "cgroupParent": "/libpod_parent",
38                        "UsePodCgroup": true,
39                        "created": "2018-08-08T11:15:18.823115347-05:00"
40                   },
41                   "State": {
42                        "CgroupPath": ""
43                   },
44                   "Containers": [
45                        {
46                             "id": "d53f8bf1e9730281264aac6e6586e327429f62c704abea4b6afb5d8a2b2c9f2c",
47                             "state": "configured"
48                        }
49                   ]
50              }
51
52
53

SEE ALSO

55       podman-pod(1), podman-pod-ps(1)
56
57

HISTORY

59       August 2018,  Originally  compiled  by  Brent  Baude  bbaude@redhat.com
60       ⟨mailto:bbaude@redhat.com⟩
61
62
63
64                                                       podman-pod-inspect(1)()
Impressum