From 7173cab2ba72ff435d4249085ab119db39b7d6e9 Mon Sep 17 00:00:00 2001 From: "Stanislav N. aka pztrn" Date: Mon, 27 Jun 2022 01:58:47 +0500 Subject: [PATCH] More verbosity to mirror script. --- mirror.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mirror.sh b/mirror.sh index 6ad30c8..899c503 100755 --- a/mirror.sh +++ b/mirror.sh @@ -30,7 +30,7 @@ function mirror() { # shellcheck disable=SC1083 image_hash=$(docker images -a | grep "^${image_name}" | grep "${image_version}" | awk {' print $3 '}) - echo -n "${image_hash} received... " + echo -n "${image_hash} received, retag as '${DESTINATION_REGISTRY}/${image}'... " if ! docker tag "${image_hash}" "${DESTINATION_REGISTRY}/${image}" &>/dev/null; then echo "TAGGING FAILED"