diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-11-24 20:58:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-24 20:58:53 +0100 |
commit | d4083954f26761b66f9165e40b08d1e6fe989c1c (patch) | |
tree | 3d5ad9c84a514790d95c3505026ac02d4cc8b53a /docs/source/markdown/podman-load.1.md | |
parent | d752f7e4643d11764f88015e00aadb87825af844 (diff) | |
parent | 05f7c95568853bb76b7c74899ceff4d0a871062c (diff) | |
download | podman-d4083954f26761b66f9165e40b08d1e6fe989c1c.tar.gz podman-d4083954f26761b66f9165e40b08d1e6fe989c1c.tar.bz2 podman-d4083954f26761b66f9165e40b08d1e6fe989c1c.zip |
Merge pull request #8459 from QiWang19/doc-save
[CI:DOCS] fix misleading save/load usage
Diffstat (limited to 'docs/source/markdown/podman-load.1.md')
-rw-r--r-- | docs/source/markdown/podman-load.1.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/source/markdown/podman-load.1.md b/docs/source/markdown/podman-load.1.md index cdc99fbf2..177709a43 100644 --- a/docs/source/markdown/podman-load.1.md +++ b/docs/source/markdown/podman-load.1.md @@ -1,7 +1,7 @@ % podman-load(1) ## NAME -podman\-load - Load an image from a container image archive into container storage +podman\-load - Load image(s) from a tar archive into container storage ## SYNOPSIS **podman load** [*options*] [*name*[:*tag*]] @@ -11,6 +11,7 @@ podman\-load - Load an image from a container image archive into container stora ## 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. +**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). |