Merge branch 'next' into patch-1

This commit is contained in:
Doğaç Eldenk
2024-06-09 13:21:28 -05:00
committed by GitHub
104 changed files with 828 additions and 234 deletions

View File

@@ -6,7 +6,7 @@ set -e # Exit immediately if a command exits with a non-zero status
#set -u # Treat unset variables as an error and exit
set -o pipefail # Cause a pipeline to return the status of the last command that exited with a non-zero status
VERSION="1.3.1"
VERSION="1.3.2"
DOCKER_VERSION="26.0"
CDN="https://cdn.coollabs.io/coolify"
@@ -17,6 +17,16 @@ if [ "$OS_TYPE" = "manjaro" ]; then
OS_TYPE="arch"
fi
# Check if the OS is popOS, if so, change it to ubuntu
if [ "$OS_TYPE" = "pop" ]; then
OS_TYPE="ubuntu"
fi
# Check if the OS is linuxmint, if so, change it to ubuntu
if [ "$OS_TYPE" = "linuxmint" ]; then
OS_TYPE="ubuntu"
fi
if [ "$OS_TYPE" = "arch" ] || [ "$OS_TYPE" = "archarm" ]; then
OS_VERSION="rolling"
else