summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-11-10 18:27:39 +0100
committerGitHub <noreply@github.com>2021-11-10 18:27:39 +0100
commit4bf0146c2978960b8c4dc5a9844c4948effbcfd2 (patch)
tree1379f5b34f945ced30c2797432208203b02e1bf2 /docs
parent2e6231bcbc05fe204a2b667252fb424b1a25cd00 (diff)
parent1ef66d6d7f215c51e582bdf21b04802b705881a4 (diff)
downloadpodman-4bf0146c2978960b8c4dc5a9844c4948effbcfd2.tar.gz
podman-4bf0146c2978960b8c4dc5a9844c4948effbcfd2.tar.bz2
podman-4bf0146c2978960b8c4dc5a9844c4948effbcfd2.zip
Merge pull request #12255 from vrothberg/fix-11970
podman load: support downloading files
Diffstat (limited to 'docs')
-rw-r--r--docs/source/markdown/podman-load.1.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/source/markdown/podman-load.1.md b/docs/source/markdown/podman-load.1.md
index 35bdfcb34..d1735750f 100644
--- a/docs/source/markdown/podman-load.1.md
+++ b/docs/source/markdown/podman-load.1.md
@@ -28,7 +28,7 @@ Note: `:` is a restricted character and cannot be part of the file name.
#### **--input**, **-i**=*input*
-Read from archive file, default is STDIN.
+Load the specified input file instead of from stdin. The file can be on the local file system or on a server (e.g., https://server.com/archive.tar)
The remote client requires the use of this option.
@@ -49,7 +49,7 @@ $ podman load --quiet -i fedora.tar
```
```
-$ podman load -q -i fedora.tar
+$ podman load -q -i https://server.com/archive.tar
```
```