From c99edd24ec75ea5fcbbb03fa26fa36834dcacc0a Mon Sep 17 00:00:00 2001 From: Mikko Rauhala Date: Wed, 10 Feb 2021 22:32:30 +0200 Subject: [PATCH] Remove post push label latest --- hooks/post_push | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/post_push b/hooks/post_push index 4d4e288..011059a 100755 --- a/hooks/post_push +++ b/hooks/post_push @@ -7,7 +7,7 @@ tagStart=$(expr index "$IMAGE_NAME" :) repoName=${IMAGE_NAME:0:tagStart-1} # Tag and push image for each additional tag -for tag in {latest,stable,2.18.2,2.18}; do +for tag in {stable,2.18.2,2.18}; do docker tag $IMAGE_NAME ${repoName}:${tag} docker push ${repoName}:${tag} done