1skopeo-inspect(1)() skopeo-inspect(1)()
2
3
4
6 skopeo-inspect - Return low-level information about image-name in a
7 registry
8
9
11 skopeo inspect [--raw] [--config] image-name
12
13
14 Return low-level information about image-name in a registry
15
16
17 --raw output raw manifest, default is to format in JSON
18
19
20 image-name name of image to retrieve information about
21
22
23 --config output configuration in OCI format, default is to format in
24 JSON
25
26
27 image-name name of image to retrieve configuration for
28
29
30 --config --raw output configuration in raw format
31
32
33 image-name name of image to retrieve configuration for
34
35
36 --authfile path
37
38
39 Path of the authentication file. Default is ${XDG_RUNTIME_DIR}/contain‐
40 ers/auth.json, which is set using podman login.
41 If the authorization state is not found there, $HOME/.docker/con‐
42 fig.json is checked, which is set using docker login.
43
44
45 --creds username[:password] for accessing the registry
46
47
48 --cert-dir path Use certificates at path (*.crt, *.cert, *.key) to con‐
49 nect to the registry
50
51
52 --tls-verify bool-value Require HTTPS and verify certificates when
53 talking to container registries (defaults to true)
54
55
56 --no-creds bool-value Access the registry anonymously.
57
58
60 To review information for the image fedora from the docker.io registry:
61
62
63 $ skopeo inspect docker://docker.io/fedora
64 {
65 "Name": "docker.io/library/fedora",
66 "Digest": "sha256:a97914edb6ba15deb5c5acf87bd6bd5b6b0408c96f48a5cbd450b5b04509bb7d",
67 "RepoTags": [
68 "20",
69 "21",
70 "22",
71 "23",
72 "24",
73 "heisenbug",
74 "latest",
75 "rawhide"
76 ],
77 "Created": "2016-06-20T19:33:43.220526898Z",
78 "DockerVersion": "1.10.3",
79 "Labels": {},
80 "Architecture": "amd64",
81 "Os": "linux",
82 "Layers": [
83 "sha256:7c91a140e7a1025c3bc3aace4c80c0d9933ac4ee24b8630a6b0b5d8b9ce6b9d4"
84 ]
85 }
86
87
88
89
91 skopeo(1), podman-login(1), docker-login(1)
92
93
95 Antonio Murdaca runcom@redhat.com ⟨mailto:runcom@redhat.com⟩, Miloslav
96 Trmac mitr@redhat.com ⟨mailto:mitr@redhat.com⟩, Jhon Honce jhonce@red‐
97 hat.com ⟨mailto:jhonce@redhat.com⟩
98
99
100
101 skopeo-inspect(1)()