From 1285c4b3bd19a69ef83bbcda6efec2883295e880 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Wed, 14 May 2025 13:54:55 +0200 Subject: [PATCH] Update koel-install.sh --- install/koel-install.sh | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/install/koel-install.sh b/install/koel-install.sh index c83f57a..4707362 100644 --- a/install/koel-install.sh +++ b/install/koel-install.sh @@ -13,6 +13,11 @@ setting_up_container network_check update_os +PG_VERSION="16" install_postgresql +PHP_VERSION=8.3 PHP_MODULE="bcmath,bz2,cli,exif,common,curl,fpm,gd,imagick,intl,mbstring,pgsql,sqlite3,xml,xmlrpc,zip" install_php +NODE_VERSION=22 NODE_MODULE="yarn,npm@latest" install_node_and_modules +install_composer + msg_info "Installing Dependencies (Patience)" $STD apt-get install -y \ nginx \ @@ -29,10 +34,10 @@ $STD apt-get install -y \ libwebp-dev msg_ok "Installed Dependencies" -PG_VERSION="16" install_postgresql -PHP_VERSION=8.3 PHP_MODULE="bcmath,bz2,cli,exif,common,curl,fpm,gd,imagick,intl,mbstring,pgsql,sqlite3,xml,xmlrpc,zip" install_php -NODE_VERSION=22 NODE_MODULE="yarn,npm@latest" install_node_and_modules -install_composer +# PG_VERSION="16" install_postgresql +# PHP_VERSION=8.3 PHP_MODULE="bcmath,bz2,cli,exif,common,curl,fpm,gd,imagick,intl,mbstring,pgsql,sqlite3,xml,xmlrpc,zip" install_php +# NODE_VERSION=22 NODE_MODULE="yarn,npm@latest" install_node_and_modules +# install_composer msg_info "Setting up PostgreSQL Database" DB_NAME=koel_db