summaryrefslogtreecommitdiff
path: root/docs/podman-load.1.md
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2019-10-24 14:54:57 -0500
committerbaude <bbaude@redhat.com>2019-10-31 12:31:39 -0500
commit52b92023edeba3a5e2c466d92d742e54b14a85cb (patch)
tree44e6193d49afd1277b7d07b0df41fc80d31b3adb /docs/podman-load.1.md
parent5af166ff513265b17aee92a9ce3a1522090d7dec (diff)
downloadpodman-52b92023edeba3a5e2c466d92d742e54b14a85cb.tar.gz
podman-52b92023edeba3a5e2c466d92d742e54b14a85cb.tar.bz2
podman-52b92023edeba3a5e2c466d92d742e54b14a85cb.zip
Restructure documentation dir
Restructuring the docs dir to make integration with sphinx easier. man pages now exist in docs/source/man and the sphinx make files exists in docs. Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'docs/podman-load.1.md')
-rw-r--r--docs/podman-load.1.md79
1 files changed, 0 insertions, 79 deletions
diff --git a/docs/podman-load.1.md b/docs/podman-load.1.md
deleted file mode 100644
index deb4fb5ec..000000000
--- a/docs/podman-load.1.md
+++ /dev/null
@@ -1,79 +0,0 @@
-% podman-load(1)
-
-## NAME
-podman\-load - Load an image from a container image archive into container storage
-
-## SYNOPSIS
-**podman load** [*options*] [*name*[:*tag*]]
-
-**podman image load** [*options*] [*name*[:*tag*]]
-
-## DESCRIPTION
-**podman load** loads an image from either an **oci-archive** or **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.
-
-The **quiet** option suppresses the progress output when set.
-Note: `:` is a restricted character and cannot be part of the file name.
-
-
-**podman [GLOBAL OPTIONS]**
-
-**podman load [GLOBAL OPTIONS]**
-
-**podman load [OPTIONS] NAME[:TAG]**
-
-## OPTIONS
-
-**--input**, **-i**=*input*
-
-Read from archive file, default is STDIN.
-
-The remote client requires the use of this option.
-
-**--quiet**, **-q**
-
-Suppress the progress output
-
-**--help**, **-h**
-
-Print usage statement
-
-## EXAMPLES
-
-```
-$ podman load --quiet -i fedora.tar
-```
-
-```
-$ podman load -q -i fedora.tar
-```
-
-```
-$ podman load < fedora.tar
-Getting image source signatures
-Copying blob sha256:5bef08742407efd622d243692b79ba0055383bbce12900324f75e56f589aedb0
- 0 B / 4.03 MB [---------------------------------------------------------------]
-Copying config sha256:7328f6f8b41890597575cbaadc884e7386ae0acc53b747401ebce5cf0d624560
- 0 B / 1.48 KB [---------------------------------------------------------------]
-Writing manifest to image destination
-Storing signatures
-Loaded image: registry.fedoraproject.org/fedora:latest
-```
-
-```
-$ cat fedora.tar | podman load
-Getting image source signatures
-Copying blob sha256:5bef08742407efd622d243692b79ba0055383bbce12900324f75e56f589aedb0
- 0 B / 4.03 MB [---------------------------------------------------------------]
-Copying config sha256:7328f6f8b41890597575cbaadc884e7386ae0acc53b747401ebce5cf0d624560
- 0 B / 1.48 KB [---------------------------------------------------------------]
-Writing manifest to image destination
-Storing signatures
-Loaded image: registry.fedoraproject.org/fedora:latest
-```
-
-## SEE ALSO
-podman(1), podman-save(1), podman-tag(1)
-
-## HISTORY
-July 2017, Originally compiled by Urvashi Mohnani <umohnani@redhat.com>