mirror of
https://github.com/containers/podman.git
synced 2025-05-24 18:46:26 +08:00

The files under docs/links reference another man page, e.g. `man podman-container-list` displays `podman-ps(1)`. This adds the alias to the in the displayed page's SYNOPSIS section. Signed-off-by: Ryan Whalen <rj.whalen@gmail.com>
739 B
739 B
% podman-tag(1)
NAME
podman-tag - Add an additional name to a local image
SYNOPSIS
podman tag image[:tag] target-name[:tag] [options]
podman image tag image[:tag] target-name[:tag] [options]
DESCRIPTION
Assigns a new alias to an image. An alias refers to the entire image name, including the optional
tag after the :
. If you do not provide tag, podman will default to latest
for both
the image and the target-name.
OPTIONS
--help, -h
Print usage statement
EXAMPLES
$ podman tag 0e3bbc2 fedora:latest
$ podman tag httpd myregistryhost:5000/fedora/httpd:v2
SEE ALSO
podman(1)
HISTORY
July 2017, Originally compiled by Ryan Cole rycole@redhat.com