diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-05-25 18:11:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-25 18:11:10 -0700 |
commit | c5b3cba9c31cd7e043deb9ad82e65184f5bdfdb0 (patch) | |
tree | 5f076f1d0908c41490bf91ee14ca62caa2abfdf0 /docs/source/markdown/podman-manifest-add.1.md | |
parent | f6f6edc4800a6cf186f526d132b6008c01f1a061 (diff) | |
parent | 0766777d624e053fefa38da423d18c5956ca1077 (diff) | |
download | podman-c5b3cba9c31cd7e043deb9ad82e65184f5bdfdb0.tar.gz podman-c5b3cba9c31cd7e043deb9ad82e65184f5bdfdb0.tar.bz2 podman-c5b3cba9c31cd7e043deb9ad82e65184f5bdfdb0.zip |
Merge pull request #10429 from ashley-cui/manifestdocs
[CI:DOCS] Document all transports for podman manifest add
Diffstat (limited to 'docs/source/markdown/podman-manifest-add.1.md')
-rw-r--r-- | docs/source/markdown/podman-manifest-add.1.md | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/source/markdown/podman-manifest-add.1.md b/docs/source/markdown/podman-manifest-add.1.md index 3a0e34ee5..376301589 100644 --- a/docs/source/markdown/podman-manifest-add.1.md +++ b/docs/source/markdown/podman-manifest-add.1.md @@ -93,6 +93,28 @@ architecture value, but which expect different versions of its instruction set. $ podman manifest add mylist:v1.11 containers-storage:quay.io/username/myimage + **dir:**_path_ + An existing local directory _path_ storing the manifest, layer tarballs, and signatures as individual files. This + is a non-standardized format, primarily useful for debugging or noninvasive container inspection. + + $ podman manifest add dir:/tmp/myimage + + **docker-archive:**_path_[**:**_docker-reference_] + An image is stored in the `docker save` formatted file. _docker-reference_ is only used when creating such a + file, and it must not contain a digest. + + $ podman manifest add docker-archive:/tmp/myimage + + **docker-daemon:**_docker-reference_ + An image in _docker-reference_ format stored in the docker daemon internal storage. The _docker-reference_ can also be an image ID (docker-daemon:algo:digest). + + $ sudo podman manifest add docker-daemon:docker.io/library/myimage:33 + + **oci-archive:**_path_**:**_tag_ + An image _tag_ in a directory compliant with "Open Container Image Layout Specification" at _path_. + + $ podman manifest add oci-archive:/tmp/myimage + ## EXAMPLE ``` |