diff options
author | Miloslav Trmač <mitr@redhat.com> | 2021-06-17 20:10:17 +0200 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2021-06-24 13:47:21 -0400 |
commit | eb6d4b0cfe385a1d1f2b8cd2b90acb3ae2145ef7 (patch) | |
tree | b5411f8d59e6ee59a3bd288d53a9cd1878c6fb7f /pkg | |
parent | e5c939183a709f4c6c1fd22df17cf641f78069da (diff) | |
download | podman-eb6d4b0cfe385a1d1f2b8cd2b90acb3ae2145ef7.tar.gz podman-eb6d4b0cfe385a1d1f2b8cd2b90acb3ae2145ef7.tar.bz2 podman-eb6d4b0cfe385a1d1f2b8cd2b90acb3ae2145ef7.zip |
Fix documentation of the --format option of podman push
It affects all transports; and without --format, we try several manifest formats.
[NO TESTS NEEDED]
Signed-off-by: Miloslav Trmač <mitr@redhat.com>
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/domain/entities/images.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/entities/images.go b/pkg/domain/entities/images.go index 3cc46ed0a..d4cafb688 100644 --- a/pkg/domain/entities/images.go +++ b/pkg/domain/entities/images.go @@ -184,7 +184,7 @@ type ImagePushOptions struct { // image to the file. Ignored for remote calls. DigestFile string // Format is the Manifest type (oci, v2s1, or v2s2) to use when pushing an - // image using the 'dir' transport. Default is manifest type of source. + // image. Default is manifest type of source, with fallbacks. // Ignored for remote calls. Format string // Quiet can be specified to suppress pull progress when pulling. Ignored |