Skip to content

Commit 2c45047

Browse files
Merge pull request containers#21730 from rhatdan/docs5
[CI:DOCS] Fix up example description of podman-manifest commands
2 parents e4229f0 + 47d0aa1 commit 2c45047

5 files changed

+8
-4
lines changed

docs/source/markdown/podman-manifest-add.1.md.in

+3
Original file line numberDiff line numberDiff line change
@@ -90,16 +90,19 @@ configuration information.
9090

9191
## EXAMPLE
9292

93+
Add specified default image from source manifest list to destination manifest list:
9394
```
9495
podman manifest add mylist:v1.11 docker://fedora
9596
71c201d10fffdcac52968a000d85a0a016ca1c7d5473948000d3131c1773d965
9697
```
9798

99+
Add all images from source manfest list to destination manifest list:
98100
```
99101
podman manifest add --all mylist:v1.11 docker://fedora
100102
71c201d10fffdcac52968a000d85a0a016ca1c7d5473948000d3131c1773d965
101103
```
102104

105+
Add selected image matching arch and variant from source manifest list to destination manifest list:
103106
```
104107
podman manifest add --arch arm64 --variant v8 mylist:v1.11 docker://71c201d10fffdcac52968a000d85a0a016ca1c7d5473948000d3131c1773d965
105108
```

docs/source/markdown/podman-manifest-annotate.1.md.in

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ for the image. This option is rarely used.
4040

4141
## EXAMPLE
4242

43+
Update arch and variant information to specified manifest list for image:
4344
```
4445
podman manifest annotate --arch arm64 --variant v8 mylist:v1.11 sha256:59eec8837a4d942cc19a52b8c09ea75121acc38114a2c68b98983ce9356b8610
4546
07ec8dc22b5dba3a33c60b68bce28bbd2b905e383fdb32a90708fa5eeac13a07: sha256:59eec8837a4d942cc19a52b8c09ea75121acc38114a2c68b98983ce9356b8610

docs/source/markdown/podman-manifest-exists.1.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,18 @@ Print usage statement.
2121

2222
## EXAMPLE
2323

24-
Check if a manifest list called `list1` exists (the manifest list does actually exist).
24+
Check if a manifest list called `list1` exists (the manifest list does actually exist):
2525
```
2626
$ podman manifest exists list1
2727
$ echo $?
2828
0
29-
$
3029
```
3130

32-
Check if a manifest called `mylist` exists (the manifest list does not actually exist).
31+
Check if a manifest called `mylist` exists (the manifest list does not actually exist):
3332
```
3433
$ podman manifest exists mylist
3534
$ echo $?
3635
1
37-
$
3836
```
3937

4038
## SEE ALSO

docs/source/markdown/podman-manifest-push.1.md.in

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ Sign the pushed images with a sigstore signature using a private key at the spec
8383

8484
## EXAMPLE
8585

86+
Push manifest list to container registry:
8687
```
8788
podman manifest push mylist:v1.11 docker://registry.example.org/mylist:v1.11
8889
```

docs/source/markdown/podman-manifest-remove.1.md

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ The list image's ID and the digest of the removed image's manifest.
1414

1515
## EXAMPLE
1616

17+
Remove specified digest from the manifest list:
1718
```
1819
podman manifest remove mylist:v1.11 sha256:cb8a924afdf0229ef7515d9e5b3024e23b3eb03ddbba287f4a19c6ac90b8d221
1920
e604eabaaee4858232761b4fef84e2316ed8f93e15eceafce845966ee3400036 :sha256:cb8a924afdf0229ef7515d9e5b3024e23b3eb03ddbba287f4a19c6ac90b8d221

0 commit comments

Comments
 (0)