podman/docs/podman-image.1.md
Ed Santiago 6f474c5704 Fix link inconsistencies in man pages
Found via:

    for i in docs/*.md;do x=$(perl -ne 'if (/\[(podman-.*?)\(1\)\]\((podman-.*?)\.1\.md/) { print "  $1 != $2\n" if $1 ne $2; print " ENOENT $2\n" unless -e "docs/$2.1.md" }' <$i); if [ -n "$x" ]; then echo $i; echo "$x";fi;done

...which is probably a good candidate for another CI hook,
except I have no idea how to rewrite it in awk.

Additionally, mark `podman refresh` and `podman container refresh`
as hidden, remove its man page, and remove references to it from
all other man pages.

Signed-off-by: Ed Santiago <santiago@redhat.com>
2019-03-01 06:53:52 -07:00

2.5 KiB

% podman-image(1)

NAME

podman-image - Manage images

SYNOPSIS

podman image subcommand

DESCRIPTION

The image command allows you to manage images

COMMANDS

Command Man Page Description
build podman-build(1) Build a container using a Dockerfile.
exists podman-image-exists(1) Check if a image exists in local storage.
history podman-history(1) Show the history of an image.
import podman-import(1) Import a tarball and save it as a filesystem image.
inspect podman-inspect(1) Display a image or image's configuration.
list podman-images(1) List the container images on the system.(alias ls)
load podman-load(1) Load an image from the docker archive.
prune podman-image-prune(1) Removed all unused images from the local store.
pull podman-pull(1) Pull an image from a registry.
push podman-push(1) Push an image from local storage to elsewhere.
rm podman-rmi(1) Removes one or more locally stored images.
save podman-save(1) Save an image to docker-archive or oci.
sign podman-image-sign(1) Sign an image.
tag podman-tag(1) Add an additional name to a local image.
trust podman-image-trust(1) Manage container image trust policy.

SEE ALSO

podman