From 3810385397b91288349a40433983ceec5e129f24 Mon Sep 17 00:00:00 2001 From: Tomohisa Kusano Date: Wed, 26 Oct 2022 16:20:53 -0700 Subject: [PATCH] Remove push-tags.sh --- push-tags.sh | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100755 push-tags.sh diff --git a/push-tags.sh b/push-tags.sh deleted file mode 100755 index c3ecabf..0000000 --- a/push-tags.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash -set -x - -SE_VERSION="4.39" -SE_REVISION="9772" - -BASE_TAGS="latest debian alpine ubuntu" - -for TAG in ${BASE_TAGS}; do - docker pull siomiz/softethervpn:${TAG} - VERSION_TAG=${SE_VERSION}-${TAG} - REVISION_TAG=${SE_REVISION}-${TAG} - docker tag siomiz/softethervpn:${TAG} siomiz/softethervpn:${VERSION_TAG%-latest} - docker tag siomiz/softethervpn:${TAG} siomiz/softethervpn:${REVISION_TAG%-latest} - docker push siomiz/softethervpn:${VERSION_TAG%-latest} - docker push siomiz/softethervpn:${REVISION_TAG%-latest} -done