blob: 0728f1997e1c3daf22c5f8071fb7b1d3945edfae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
% podman(1) podman-tag - Add tags to an image
% Ryan Cole
# podman-tag "1" "July 2017" "podman"
## NAME
podman tag - Add an additional name to a local image
## SYNOPSIS
**podman tag**
[**--help**|**-h**]
## DESCRIPTION
Assigns a new alias to an image in a registry. An alias refers to the entire image name, including the optional **TAG** after the ':'
**podman [GLOBAL OPTIONS]**
**podman [GLOBAL OPTIONS] tag [OPTIONS]**
## GLOBAL OPTIONS
**--help, -h**
Print usage statement
## EXAMPLES
podman tag 0e3bbc2 fedora:latest
podman tag httpd myregistryhost:5000/fedora/httpd:v2
## SEE ALSO
podman(1), crio(8), crio.conf(5)
## HISTORY
July 2017, Originally compiled by Ryan Cole <rycole@redhat.com>
|