diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2022-08-17 12:30:51 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2022-08-17 15:02:53 -0400 |
commit | 0dd2fcf715ec8a3ae8e15212289e5320e7cded19 (patch) | |
tree | caf680cdb95f80f2d7b25590dc41e1ee5eb6aa2d /cmd | |
parent | 5de215e1447af96ec2b199794cd425b75a2da08a (diff) | |
download | podman-0dd2fcf715ec8a3ae8e15212289e5320e7cded19.tar.gz podman-0dd2fcf715ec8a3ae8e15212289e5320e7cded19.tar.bz2 podman-0dd2fcf715ec8a3ae8e15212289e5320e7cded19.zip |
Add podman manifest create -a. Alias for --amend:Docker compatibility
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/manifest/create.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/manifest/create.go b/cmd/podman/manifest/create.go index 0a0ea1d88..2ea40d832 100644 --- a/cmd/podman/manifest/create.go +++ b/cmd/podman/manifest/create.go @@ -42,7 +42,7 @@ func init() { }) flags := createCmd.Flags() flags.BoolVar(&manifestCreateOpts.All, "all", false, "add all of the lists' images if the images to add are lists") - flags.BoolVar(&manifestCreateOpts.Amend, "amend", false, "modify an existing list if one with the desired name already exists") + flags.BoolVarP(&manifestCreateOpts.Amend, "amend", "a", false, "modify an existing list if one with the desired name already exists") flags.BoolVar(&manifestCreateOpts.Insecure, "insecure", false, "neither require HTTPS nor verify certificates when accessing the registry") _ = flags.MarkHidden("insecure") flags.BoolVar(&manifestCreateOpts.TLSVerifyCLI, "tls-verify", true, "require HTTPS and verify certificates when accessing the registry") |