summaryrefslogtreecommitdiff
path: root/docs/source
diff options
context:
space:
mode:
authorQi Wang <qiwan@redhat.com>2020-10-22 15:00:31 -0400
committerQi Wang <qiwan@redhat.com>2020-12-02 09:25:01 -0500
commitf525d8b8431b13359c0e2f6c8be45687eb32a0fd (patch)
tree8257fbd4255fb9fc091550802eb813edaf3cef70 /docs/source
parentd28874b2f4bc4f522ed2dc63412e9ddfea011fac (diff)
downloadpodman-f525d8b8431b13359c0e2f6c8be45687eb32a0fd.tar.gz
podman-f525d8b8431b13359c0e2f6c8be45687eb32a0fd.tar.bz2
podman-f525d8b8431b13359c0e2f6c8be45687eb32a0fd.zip
Do not pass name argument to Load API
Not pass the name argument to Load API. Specify in the document the usage of the optional argument is tagging an additional image. Close #7337 Signed-off-by: Qi Wang <qiwan@redhat.com>
Diffstat (limited to 'docs/source')
-rw-r--r--docs/source/markdown/podman-load.1.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/markdown/podman-load.1.md b/docs/source/markdown/podman-load.1.md
index 177709a43..dc2a632e5 100644
--- a/docs/source/markdown/podman-load.1.md
+++ b/docs/source/markdown/podman-load.1.md
@@ -10,7 +10,7 @@ podman\-load - Load image(s) from a tar archive into container storage
## DESCRIPTION
**podman load** loads an image from either an **oci-archive** or a **docker-archive** stored on the local machine into container storage. **podman load** reads from stdin by default or a file if the **input** option is set.
-You can also specify a name for the image if the archive does not contain a named reference, of if you want an additional name for the local image.
+You can also specify a name for the image if the archive is of single image and load will tag an additional image with the name:tag.
**podman load** is used for loading from the archive generated by **podman save**, that includes the image parent layers. To load the archive of container's filesystem created by **podman export**, use **podman import**.
The local client further supports loading an **oci-dir** or a **docker-dir** as created with **podman save** (1).