1podman-manifest-exists(1) General Commands Manual 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 returns an exit code of 0 when the manifest is found. A 1
17 is returned otherwise. An exit code of 125 indicates there was another
18 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 $ podman manifest exists list1
31 $ echo $?
32 0
33 $
34
35
36
37 Check if a manifest called mylist exists (the manifest list does not
38 actually exist).
39
40 $ podman manifest exists mylist
41 $ echo $?
42 1
43 $
44
45
46
48 podman(1), podman-manifest(1)
49
50
52 January 2021, Originally compiled by Paul Holzinger
53 <paul.holzinger@web.de>
54
55
56
57 podman-manifest-exists(1)