🗃️ Committing everything that changed 🗃️

rootfs/root/docker/setup/05-custom.sh
This commit is contained in:
casjay 2025-02-05 10:13:49 -05:00
parent eb28d22bcf
commit 1beb902753
Signed by untrusted user who does not match committer: jason
GPG Key ID: 1AB309F42A764145

View File

@ -24,25 +24,19 @@ set -o pipefail
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Set env variables
exitCode=0
AMPACHE_TEMP_FILE="/tmp/ampache.zip"
AMPACHE_PHP_VER="${AMPACHE_PHP_VER:-8.4}"
AMPACHE_HOME="/usr/share/webapps/ampache"
AMPACHE_VERSION="${AMPACHE_VERSION:-1.3.9}"
AMPACHE_LASTEST="$(curl -q -LSsf "https://api.github.com/repos/ampache/ampache/releases" | jq -rc '.[].tag_name' | sort -rV | head -n1 | grep '^' || false)"
AMPACHE_ARCHIVE_FILE="https://github.com/ampache/ampache/releases/download/${AMPACHE_LASTEST:-$AMPACHE_VERSION}/ampache-${AMPACHE_LASTEST:-$AMPACHE_VERSION}_all_php${AMPACHE_PHP_VER}.zip"
export AMPACHE_HOME AMPACHE_VERSION AMPACHE_FILENAME="$(basename "$AMPACHE_ARCHIVE_FILE")" AMPACHE_RELEASE="$AMPACHE_LASTEST" PHP_VERSION=$PHP_VERSION NODE_VERSION=$NODE_VERSION NODE_MANAGER=$NODE_MANAGER WWW_ROOT_DIR="$WWW_ROOT_DIR"
export PHP_VERSION=$PHP_VERSION NODE_VERSION=$NODE_VERSION NODE_MANAGER=$NODE_MANAGER WWW_ROOT_DIR="$WWW_ROOT_DIR"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Predefined actions
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Main script
bash -c "$(curl -q -LSsf "https://github.com/templatemgr/php/raw/main/install.sh")"
bash -c "$(curl -q -LSsf "https://github.com/templatemgr/mariadb/raw/main/install.sh")"
bash -c "$(curl -q -LSsf "https://github.com/templatemgr/apache2/raw/main/install.sh")"
bash -c "$(curl -q -LSsf "https://github.com/templatemgr/ampache/raw/main/install.sh")"
bash -c "$(curl -q -LSsf "https://github.com/casjay-templates/default-html-pages/raw/main/install.sh")"
bash -c "$(curl -q -LSsf "https://github.com/casjay-templates/default-cgi-bin/raw/main/install.sh")"
bash -c "$(curl -q -LSsf "https://github.com/casjay-templates/default-error-pages/raw/main/install.sh")"
bash -c "$(curl -q -LSsf "https://github.com/templatemgr/php/raw/main/install.sh" || exit 1)"
bash -c "$(curl -q -LSsf "https://github.com/templatemgr/mariadb/raw/main/install.sh" || exit 1)"
bash -c "$(curl -q -LSsf "https://github.com/templatemgr/apache2/raw/main/install.sh" || exit 1)"
bash -c "$(curl -q -LSsf "https://github.com/templatemgr/ampache/raw/main/install.sh" || exit 1)"
bash -c "$(curl -q -LSsf "https://github.com/casjay-templates/default-html-pages/raw/main/install.sh" || exit 1)"
bash -c "$(curl -q -LSsf "https://github.com/casjay-templates/default-cgi-bin/raw/main/install.sh" || exit 1)"
bash -c "$(curl -q -LSsf "https://github.com/casjay-templates/default-error-pages/raw/main/install.sh" || exit 1)"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Set the exit code
#exitCode=$?