diff options
author | TomSweeneyRedHat <tsweeney@redhat.com> | 2019-01-18 20:01:29 -0500 |
---|---|---|
committer | TomSweeneyRedHat <tsweeney@redhat.com> | 2019-02-09 20:00:19 -0500 |
commit | 1543a01be874af690b7ade9b226d9d62e43ac036 (patch) | |
tree | 1c0ced1346aedfb72f4936c740f176f8b527589c /cmd/podman/cliconfig | |
parent | c86e8f180c8b0cdbd1bafe327c4671370096c45f (diff) | |
download | podman-1543a01be874af690b7ade9b226d9d62e43ac036.tar.gz podman-1543a01be874af690b7ade9b226d9d62e43ac036.tar.bz2 podman-1543a01be874af690b7ade9b226d9d62e43ac036.zip |
Add --all-tags to pull command
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
Add --all-tags for the `podman pull` command so all tags
of an image will be pulled, not just ':latest'. Emulates
the change in Buildah https://github.com/containers/buildah/pull/1263
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
Diffstat (limited to 'cmd/podman/cliconfig')
-rw-r--r-- | cmd/podman/cliconfig/config.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/cliconfig/config.go b/cmd/podman/cliconfig/config.go index b925d29ff..a4c1bf0c0 100644 --- a/cmd/podman/cliconfig/config.go +++ b/cmd/podman/cliconfig/config.go @@ -334,6 +334,7 @@ type PsValues struct { type PullValues struct { PodmanCommand + AllTags bool Authfile string CertDir string Creds string |