From 65585e286d6e7b3ce65cc854a5ed291ddfcd35e8 Mon Sep 17 00:00:00 2001 From: knuth Date: Fri, 16 Dec 2022 14:16:46 +0100 Subject: [PATCH] use GitHub redirect for newest version --- helper-scripts/update_compose.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/helper-scripts/update_compose.sh b/helper-scripts/update_compose.sh index b6640798..1dadbe33 100755 --- a/helper-scripts/update_compose.sh +++ b/helper-scripts/update_compose.sh @@ -4,7 +4,8 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" source ${SCRIPT_DIR}/../mailcow.conf if [ "${DOCKER_COMPOSE_VERSION}" == "standalone" ]; then -LATEST_COMPOSE=$(curl -#L https://www.servercow.de/docker-compose/latest.php) +LATEST_COMPOSE=$(curl -Ls -w %{url_effective} -o /dev/null https://github.com/docker/compose/releases/latest) # redirect to latest release +LATEST_COMPOSE=${LATEST_COMPOSE##*/v} #get the latest version from the redirect, excluding the "v" prefix COMPOSE_VERSION=$(docker-compose version --short) if [[ "$LATEST_COMPOSE" != "$COMPOSE_VERSION" ]]; then echo -e "\e[33mA new docker-compose Version is available: $LATEST_COMPOSE\e[0m"