summaryrefslogtreecommitdiff
path: root/docs/source
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-08-17 09:39:19 +0000
committerGitHub <noreply@github.com>2022-08-17 09:39:19 +0000
commita9131050cfca0844aabae505a3df6d43426a9fed (patch)
treeb7306b2f742a6ef2bd2efa31db11e5705a4957e1 /docs/source
parentfd0142d8ee78ac2fce6157f9e72b20c007b585ce (diff)
parent7e7a79b075f7d65657d95169f02c2c1c03198b93 (diff)
downloadpodman-a9131050cfca0844aabae505a3df6d43426a9fed.tar.gz
podman-a9131050cfca0844aabae505a3df6d43426a9fed.tar.bz2
podman-a9131050cfca0844aabae505a3df6d43426a9fed.zip
Merge pull request #15350 from nalind/manifest-amend
podman manifest create: accept --amend and --insecure flags
Diffstat (limited to 'docs/source')
-rw-r--r--docs/source/markdown/podman-manifest-create.1.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/source/markdown/podman-manifest-create.1.md b/docs/source/markdown/podman-manifest-create.1.md
index 77a4b9db6..f2aac6069 100644
--- a/docs/source/markdown/podman-manifest-create.1.md
+++ b/docs/source/markdown/podman-manifest-create.1.md
@@ -22,11 +22,23 @@ If any of the images which should be added to the new list or index are
themselves lists or indexes, add all of their contents. By default, only one
image from such a list will be added to the newly-created list or index.
+#### **--amend**
+
+If a manifest list named *listnameorindexname* already exists, modify the
+preexisting list instead of exiting with an error. The contents of
+*listnameorindexname* are not modified if no *imagename*s are given.
+
+#### **--tls-verify**
+
+Require HTTPS and verify certificates when talking to container registries. (defaults to true)
+
## EXAMPLES
```
podman manifest create mylist:v1.11
9cfd24048d5fc80903f088f1531a21bff01172abe66effa8941a4c2308dc745f
+podman manifest create --amend mylist:v1.11
+9cfd24048d5fc80903f088f1531a21bff01172abe66effa8941a4c2308dc745f
```
```