mirror of
https://github.com/containers/podman.git
synced 2025-06-29 23:22:40 +08:00
Merge pull request #8459 from QiWang19/doc-save
[CI:DOCS] fix misleading save/load usage
This commit is contained in:
@ -23,7 +23,7 @@ var (
|
||||
loadDescription = "Loads an image from a locally stored archive (tar file) into container storage."
|
||||
loadCommand = &cobra.Command{
|
||||
Use: "load [options] [NAME[:TAG]]",
|
||||
Short: "Load an image from container archive",
|
||||
Short: "Load image(s) from a tar archive",
|
||||
Long: loadDescription,
|
||||
RunE: load,
|
||||
Args: cobra.MaximumNArgs(1),
|
||||
|
@ -12,6 +12,8 @@ podman\-export - Export a container's filesystem contents as a tar archive
|
||||
**podman export** exports the filesystem of a container and saves it as a tarball
|
||||
on the local machine. **podman export** writes to STDOUT by default and can be
|
||||
redirected to a file using the `--output` flag.
|
||||
The image of the container exported by **podman export** can be imported by **podman import**.
|
||||
To export image(s) with parent layers, use **podman save**.
|
||||
Note: `:` is a restricted character and cannot be part of the file name.
|
||||
|
||||
**podman [GLOBAL OPTIONS]**
|
||||
|
@ -14,6 +14,7 @@ and saves it as a filesystem image. Remote tarballs can be specified using a URL
|
||||
Various image instructions can be configured with the **--change** flag and
|
||||
a commit message can be set using the **--message** flag.
|
||||
**reference**, if present, is a tag to assign to the image.
|
||||
**podman import** is used for importing from the archive generated by **podman export**, that includes the container's filesystem. To import the archive of image layers created by **podman save**, use **podman load**.
|
||||
Note: `:` is a restricted character and cannot be part of the file name.
|
||||
|
||||
## OPTIONS
|
||||
|
@ -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).
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
% podman-save(1)
|
||||
|
||||
## NAME
|
||||
podman\-save - Save an image to a container archive
|
||||
podman\-save - Save image(s) to an archive
|
||||
|
||||
## SYNOPSIS
|
||||
**podman save** [*options*] *name*[:*tag*]
|
||||
@ -12,6 +12,8 @@ podman\-save - Save an image to a container archive
|
||||
**podman save** saves an image to either **docker-archive**, **oci-archive**, **oci-dir** (directory with oci manifest type), or **docker-dir** (directory with v2s2 manifest type) on the local machine,
|
||||
default is **docker-archive**. **podman save** writes to STDOUT by default and can be redirected to a
|
||||
file using the **output** flag. The **quiet** flag suppresses the output when set.
|
||||
**podman save** will save parent layers of the image(s) and the image(s) can be loaded using **podman load**.
|
||||
To export the containers, use the **podman export**.
|
||||
Note: `:` is a restricted character and cannot be part of the file name.
|
||||
|
||||
**podman [GLOBAL OPTIONS]**
|
||||
|
@ -231,7 +231,7 @@ the exit codes follow the `chroot` standard, see below:
|
||||
| [podman-init(1)](podman-init.1.md) | Initialize one or more containers |
|
||||
| [podman-inspect(1)](podman-inspect.1.md) | Display a container, image, volume, network, or pod's configuration. |
|
||||
| [podman-kill(1)](podman-kill.1.md) | Kill the main process in one or more containers. |
|
||||
| [podman-load(1)](podman-load.1.md) | Load an image from a container image archive into container storage. |
|
||||
| [podman-load(1)](podman-load.1.md) | Load image(s) from a tar archive into container storage. |
|
||||
| [podman-login(1)](podman-login.1.md) | Login to a container registry. |
|
||||
| [podman-logout(1)](podman-logout.1.md) | Logout of a container registry. |
|
||||
| [podman-logs(1)](podman-logs.1.md) | Display the logs of one or more containers. |
|
||||
@ -249,7 +249,7 @@ the exit codes follow the `chroot` standard, see below:
|
||||
| [podman-rm(1)](podman-rm.1.md) | Remove one or more containers. |
|
||||
| [podman-rmi(1)](podman-rmi.1.md) | Removes one or more locally stored images. |
|
||||
| [podman-run(1)](podman-run.1.md) | Run a command in a new container. |
|
||||
| [podman-save(1)](podman-save.1.md) | Save an image to a container archive. |
|
||||
| [podman-save(1)](podman-save.1.md) | Save image(s) to an archive. |
|
||||
| [podman-search(1)](podman-search.1.md) | Search a registry for an image. |
|
||||
| [podman-start(1)](podman-start.1.md) | Start one or more containers. |
|
||||
| [podman-stats(1)](podman-stats.1.md) | Display a live stream of one or more container's resource usage statistics. |
|
||||
|
Reference in New Issue
Block a user