diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-11-18 04:33:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-18 04:33:49 +0100 |
commit | a6f7afd41729edbe0d8cbf21bab5b475c6a13f9e (patch) | |
tree | eae673786f4e85877ece173257ced9069a8efff6 /cmd/podman/manifest/push.go | |
parent | 4bbf2b64cafb6923512d95e338d6b313d289696b (diff) | |
parent | bd104d2948893727add27de8e07fdf1874afdee3 (diff) | |
download | podman-a6f7afd41729edbe0d8cbf21bab5b475c6a13f9e.tar.gz podman-a6f7afd41729edbe0d8cbf21bab5b475c6a13f9e.tar.bz2 podman-a6f7afd41729edbe0d8cbf21bab5b475c6a13f9e.zip |
Merge pull request #8382 from dbaker-rh/helppage
[CI:DOCS] Fix example for manifest push
Diffstat (limited to 'cmd/podman/manifest/push.go')
-rw-r--r-- | cmd/podman/manifest/push.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/manifest/push.go b/cmd/podman/manifest/push.go index 593d62710..a3b469491 100644 --- a/cmd/podman/manifest/push.go +++ b/cmd/podman/manifest/push.go @@ -28,7 +28,7 @@ var ( Short: "Push a manifest list or image index to a registry", Long: "Pushes manifest lists and image indexes to registries.", RunE: push, - Example: `podman manifest push mylist:v1.11 quay.io/myimagelist`, + Example: `podman manifest push mylist:v1.11 docker://quay.io/myuser/image:v1.11`, Args: cobra.ExactArgs(2), ValidArgsFunction: common.AutocompleteImages, } |