From 0dacb243ed4279f2146f5608bbf685be09d2f4c8 Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Sat, 17 May 2025 17:43:46 +0200 Subject: [PATCH] Update install.sh --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index e756916e..3e2e4b4e 100644 --- a/install.sh +++ b/install.sh @@ -10,7 +10,7 @@ # Usage: bash <(curl -sSL https://openpanel.org) # Author: Stefan Pejcic # Created: 11.07.2023 -# Last Modified: 16.05.2025 +# Last Modified: 17.05.2025 # ################################################################################ @@ -183,7 +183,7 @@ set_version_to_install(){ response=$(curl -4 -s "https://hub.docker.com/v2/repositories/openpanel/openpanel-ui/tags") PANEL_VERSION=$(echo $response | jq -r '.results[0].name') if [[ ! "$PANEL_VERSION" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then - PANEL_VERSION="1.2.9" # fallback if hub.docker.com unreachable to first tag that supports arm + PANEL_VERSION="1.3.0" # fallback if hub.docker.com unreachable to first tag that supports arm fi fi }