diff options
author | Qi Wang <qiwan@redhat.com> | 2020-04-23 15:36:47 -0400 |
---|---|---|
committer | Qi Wang <qiwan@redhat.com> | 2020-05-06 10:54:28 -0400 |
commit | 5621f5199d0aeaefae77db920866d7aeea9d1e7b (patch) | |
tree | 93ade2da60914f8de8d0745b0ef7da9a154f1db1 /cmd/podman/manifest/manifest.go | |
parent | 0eb905ff2c2f033ee3009d8d374dcd2347ac04d1 (diff) | |
download | podman-5621f5199d0aeaefae77db920866d7aeea9d1e7b.tar.gz podman-5621f5199d0aeaefae77db920866d7aeea9d1e7b.tar.bz2 podman-5621f5199d0aeaefae77db920866d7aeea9d1e7b.zip |
Manifest remove, push
Implements podman manifest remove and podman manifest push.
Signed-off-by: Qi Wang <qiwan@redhat.com>
Diffstat (limited to 'cmd/podman/manifest/manifest.go')
-rw-r--r-- | cmd/podman/manifest/manifest.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd/podman/manifest/manifest.go b/cmd/podman/manifest/manifest.go index 88d264c1f..d7f042a56 100644 --- a/cmd/podman/manifest/manifest.go +++ b/cmd/podman/manifest/manifest.go @@ -18,7 +18,9 @@ var ( Example: `podman manifest add mylist:v1.11 image:v1.11-amd64 podman manifest create localhost/list podman manifest inspect localhost/list - podman manifest annotate --annotation left=right mylist:v1.11 image:v1.11-amd64`, + podman manifest annotate --annotation left=right mylist:v1.11 image:v1.11-amd64 + podman manifest push mylist:v1.11 quay.io/myimagelist + podman manifest remove mylist:v1.11 sha256:15352d97781ffdf357bf3459c037be3efac4133dc9070c2dce7eca7c05c3e736`, } ) |