Skip to content

Commit

Permalink
Release: update docker manifest create commands
Browse files Browse the repository at this point in the history
This docker command is an experimental feature currently.
It seems the amend switches are unneeded and that these
"manifest" parameters should simply follow the "manifest-list"
parameter

Signed-off-by: Chris Porter <[email protected]>
  • Loading branch information
portersrc authored and fitzthum committed Apr 29, 2024
1 parent d72d2c0 commit 7582111
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions install/pre-install-payload/payload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@ function build_payload() {

docker manifest create "${extra_docker_manifest_flags}" \
"${registry}:${tag}" \
--amend "${registry}:x86_64-${tag}" \
--amend "${registry}:s390x-${tag}"
"${registry}:x86_64-${tag}" \
"${registry}:s390x-${tag}"

docker manifest create "${extra_docker_manifest_flags}" \
"${registry}:latest" \
--amend "${registry}:x86_64-${tag}" \
--amend "${registry}:s390x-${tag}"
"${registry}:x86_64-${tag}" \
"${registry}:s390x-${tag}"

docker manifest push "${extra_docker_manifest_flags}" "${registry}:${tag}"
docker manifest push "${extra_docker_manifest_flags}" "${registry}:latest"
Expand Down

0 comments on commit 7582111

Please sign in to comment.