1podman-manifest-exists(1)() podman-manifest-exists(1)()
2
3
4
6 podman-manifest-exists - Check if the given manifest list exists in lo‐
7 cal storage
8
9
11 podman manifest exists manifest
12
13
15 podman manifest exists checks if a manifest list exists on local stor‐
16 age. Podman will return an exit code of 0 when the manifest is found. A
17 1 will be returned otherwise. An exit code of 125 indicates there was
18 another issue.
19
20
22 --help, -h
23 Print usage statement.
24
25
27 Check if a manifest list called list1 exists (the manifest list does
28 actually exist).
29
30
31 $ podman manifest exists list1
32 $ echo $?
33 0
34 $
35
36
37
38 Check if an manifest called mylist exists (the manifest list does not
39 actually exist).
40
41
42 $ podman manifest exists mylist
43 $ echo $?
44 1
45 $
46
47
48
50 podman(1), podman-manifest-create(1), podman-manifest-remove(1)
51
52
54 January 2021, Originally compiled by Paul Holzinger
55 <paul.holzinger@web.de>
56
57
58
59 podman-manifest-exists(1)()