summaryrefslogtreecommitdiff
path: root/cmd/podman
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-06-17 18:34:24 -0400
committerGitHub <noreply@github.com>2021-06-17 18:34:24 -0400
commitce04a3e17f5d5ac1d0ac29302dc6e6d98edf28eb (patch)
tree74ddc0d1693748ddd52477ab7d1942b6cf2e58a9 /cmd/podman
parent725b5001a17f703d95a3c88e4f58225c5290576b (diff)
parent2bd382c8c7d3ba7f7a8e4a2921aa183118500a2a (diff)
downloadpodman-ce04a3e17f5d5ac1d0ac29302dc6e6d98edf28eb.tar.gz
podman-ce04a3e17f5d5ac1d0ac29302dc6e6d98edf28eb.tar.bz2
podman-ce04a3e17f5d5ac1d0ac29302dc6e6d98edf28eb.zip
Merge pull request #10711 from mtrmac/format-docs
Fix documentation of the --format option of podman push
Diffstat (limited to 'cmd/podman')
-rw-r--r--cmd/podman/images/push.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/images/push.go b/cmd/podman/images/push.go
index edf8e9203..a13976612 100644
--- a/cmd/podman/images/push.go
+++ b/cmd/podman/images/push.go
@@ -96,7 +96,7 @@ func pushFlags(cmd *cobra.Command) {
_ = cmd.RegisterFlagCompletionFunc(digestfileFlagName, completion.AutocompleteDefault)
formatFlagName := "format"
- flags.StringVarP(&pushOptions.Format, formatFlagName, "f", "", "Manifest type (oci, v2s2, or v2s1) to use when pushing an image using the 'dir' transport (default is manifest type of source)")
+ flags.StringVarP(&pushOptions.Format, formatFlagName, "f", "", "Manifest type (oci, v2s2, or v2s1) to use in the destination (default is manifest type of source, with fallbacks)")
_ = cmd.RegisterFlagCompletionFunc(formatFlagName, common.AutocompleteManifestFormat)
flags.BoolVarP(&pushOptions.Quiet, "quiet", "q", false, "Suppress output information when pushing images")