1buildah-manifest-exists(1)() buildah-manifest-exists(1)()
2
3
4
6 buildah-manifest-exists - Check if the given manifest list exists in
7 local storage
8
9
11 buildah manifest exists manifest
12
13
15 buildah manifest exists checks if a manifest list exists in local stor‐
16 age. Buildah will return an exit code of 0 when the manifest list is
17 found. A 1 will be returned otherwise. An exit code of 125 indicates
18 there was 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 $ buildah 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 $ buildah manifest exists mylist
43 $ echo $?
44 1
45 $
46
47
48
50 buildah(1), buildah-manifest(1)
51
52
53
54 buildah-manifest-exists(1)()