
This fixes an issue where if you did man -k podman-run podman-run (1) - (unknown subject) Now you will see man -k podman-run podman-run (1) - Run a command in a new container More importantly man -k containers | grep podman podman (1) - Simple management tool for containers and images podman-kill (1) - Kills one or more containers with a signal podman-pause (1) - Pause one or more containers podman-ps (1) - Prints out information about containers podman-rm (1) - Remove one or more containers podman-start (1) - Start one or more containers podman-stats (1) - Display a live stream of 1 or more containers' resource usage statistics podman-stop (1) - Stop one or more containers podman-unpause (1) - Unpause one or more containers podman-wait (1) - Waits on one or more containers to stop and prints exit code Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Closes: #676 Approved by: mheon
2.3 KiB
% podman(1) podman-load - Simple tool to load an image from an archive to containers-storage % Urvashi Mohnani
podman-load "1" "July 2017" "podman"
NAME
podman-load - Load an image from docker archive
SYNOPSIS
podman load NAME[:TAG|@DIGEST] [--input|-i] [--quiet|-q] [--help|-h]
DESCRIPTION
podman load copies an image from either docker-archive or oci-archive stored on the local machine. podman load reads from stdin by default or a file if the input flag is set. The quiet flag suppresses the output when set.
podman [GLOBAL OPTIONS]
podman load [GLOBAL OPTIONS]
podman load [OPTIONS] NAME[:TAG|@DIGEST]
OPTIONS
--input, -i Read from archive file, default is STDIN
--quiet, -q Suppress the output
--signature-policy="PATHNAME"
Pathname of a signature policy file to use. It is not recommended that this option be used, as the default behavior of using the system-wide default policy (frequently /etc/containers/policy.json) is most often preferred
EXAMPLES
# podman load --quiet -i fedora.tar
# podman load -q --signature-policy /etc/containers/policy.json -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), crio(8)
HISTORY
July 2017, Originally compiled by Urvashi Mohnani umohnani@redhat.com