diff --git a/bin/auto-push-x8664-image-to-hub.sh b/bin/auto-push-amd64-image-to-hub.sh similarity index 98% rename from bin/auto-push-x8664-image-to-hub.sh rename to bin/auto-push-amd64-image-to-hub.sh index 81606f0..562fe48 100755 --- a/bin/auto-push-x8664-image-to-hub.sh +++ b/bin/auto-push-amd64-image-to-hub.sh @@ -11,7 +11,7 @@ build_and_push_image() { local tag=$2 local target_name=$3 local image_prefix="iamtsm/tl-rtc-file" - local arch="x8664" + local arch="amd64" echo "###################################### build $image_prefix-$target_name-$arch:$tag" ## build by docker-compose-build-code.yml diff --git a/bin/auto-push-manifest-to-hub.sh b/bin/auto-push-manifest-to-hub.sh index 84df33f..c3c5eeb 100755 --- a/bin/auto-push-manifest-to-hub.sh +++ b/bin/auto-push-manifest-to-hub.sh @@ -11,12 +11,12 @@ build_and_push_manifest() { local target_name=$3 local image_prefix="iamtsm/tl-rtc-file" local arch_arm64="arm64" - local arch_x8664="x8664" + local arch_amd64="amd64" echo "###################################### craete manifest $image_prefix-$target_name:$tag" docker manifest create $image_prefix-$target_name:$tag \ $image_prefix-$target_name-$arch_arm64:$tag \ - $image_prefix-$target_name-$arch_x8664:$tag --amend + $image_prefix-$target_name-$arch_amd64:$tag --amend echo "###################################### push manifest $image_prefix-$target_name:$tag" docker manifest push $image_prefix-$target_name:$tag