summaryrefslogtreecommitdiff
path: root/docs/source/markdown/podman-manifest-add.1.md
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-04-05 21:12:15 +0200
committerGitHub <noreply@github.com>2021-04-05 21:12:15 +0200
commit254a5d4c2618cccdd4b4051034bedc9a624be1eb (patch)
tree96f99c07b1e80aa4b07ace8e279854c0da2da50b /docs/source/markdown/podman-manifest-add.1.md
parent6b23fece7348cd52949a3dd7b7e65483e3cac19b (diff)
parentab7a3b2069002cb8f7e39f3d864a7d207e8a53f1 (diff)
downloadpodman-254a5d4c2618cccdd4b4051034bedc9a624be1eb.tar.gz
podman-254a5d4c2618cccdd4b4051034bedc9a624be1eb.tar.bz2
podman-254a5d4c2618cccdd4b4051034bedc9a624be1eb.zip
Merge pull request #9909 from w4tsn/docs/add-containers-storage-transport
[CI:DOCS] Add transport and destination info to manifest doc
Diffstat (limited to 'docs/source/markdown/podman-manifest-add.1.md')
-rw-r--r--docs/source/markdown/podman-manifest-add.1.md16
1 files changed, 15 insertions, 1 deletions
diff --git a/docs/source/markdown/podman-manifest-add.1.md b/docs/source/markdown/podman-manifest-add.1.md
index c3c1ea1cf..2727843da 100644
--- a/docs/source/markdown/podman-manifest-add.1.md
+++ b/docs/source/markdown/podman-manifest-add.1.md
@@ -4,7 +4,7 @@
podman\-manifest\-add - Add an image to a manifest list or image index
## SYNOPSIS
-**podman manifest add** [*options*] *listnameorindexname* *imagename*
+**podman manifest add** [*options*] *listnameorindexname* [*transport*]:*imagename*
## DESCRIPTION
@@ -79,6 +79,20 @@ Specify the variant which the list or index records for the image. This option
is typically used to distinguish between multiple entries which share the same
architecture value, but which expect different versions of its instruction set.
+## Transport
+
+ Multiple transports are supported:
+
+ **docker://**_docker-reference_ _(default)_
+ An image in a registry implementing the "Docker Registry HTTP API V2". By default, uses the authorization state in `$XDG_RUNTIME_DIR/containers/auth.json`, which is set using `(podman login)`. If the authorization state is not found there, `$HOME/.docker/config.json` is checked, which is set using `(docker login)`.
+
+ $ podman manifest add mylist:v1.11 docker://quay.io/username/myimage
+
+ **containers-storage:**_oci-reference_
+ An image in _oci-reference_ format stored in the local container storage. _oci-reference_ must contain a tag.
+
+ $ podman manifest add mylist:v1.11 containers-storage:quay.io/username/myimage
+
## EXAMPLE
```