Update nginx-proxy-manager-install.sh

This commit is contained in:
tteckster 2022-06-30 08:54:15 -04:00 committed by GitHub
parent c5a53709e2
commit b8650fa1c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 7 deletions

View File

@ -61,12 +61,13 @@ msg_ok "Updated Container OS"
msg_info "Installing Dependencies" msg_info "Installing Dependencies"
apt-get update &>/dev/null apt-get update &>/dev/null
apt-get -qqy install \ apt-get -y install \
sudo \ sudo \
curl \ curl \
wget \
gnupg \ gnupg \
openssl \ make \
g++ \
gcc \
ca-certificates \ ca-certificates \
apache2-utils \ apache2-utils \
logrotate \ logrotate \
@ -76,7 +77,7 @@ apt-get -qqy install \
lsb-release &>/dev/null lsb-release &>/dev/null
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Installing Dependencies" msg_info "Installing Python"
apt-get install -y -q --no-install-recommends python3 python3-pip python3-venv &>/dev/null apt-get install -y -q --no-install-recommends python3 python3-pip python3-venv &>/dev/null
pip3 install --upgrade setuptools &>/dev/null pip3 install --upgrade setuptools &>/dev/null
pip3 install --upgrade pip &>/dev/null pip3 install --upgrade pip &>/dev/null
@ -85,7 +86,7 @@ msg_info "Installing Dependencies"
python3 -m pip install --no-cache-dir -U cryptography==3.3.2 &>/dev/null python3 -m pip install --no-cache-dir -U cryptography==3.3.2 &>/dev/null
fi fi
python3 -m pip install --no-cache-dir cffi certbot &>/dev/null python3 -m pip install --no-cache-dir cffi certbot &>/dev/null
msg_ok "Installed Dependencies" msg_ok "Installed Python"
msg_info "Installing Openresty" msg_info "Installing Openresty"
wget -q -O - https://openresty.org/package/pubkey.gpg | apt-key add - &>/dev/null wget -q -O - https://openresty.org/package/pubkey.gpg | apt-key add - &>/dev/null
@ -96,11 +97,11 @@ apt-get -y install --no-install-recommends openresty &>/dev/null
msg_ok "Installed Openresty" msg_ok "Installed Openresty"
msg_info "Setting up Node.js Repository" msg_info "Setting up Node.js Repository"
sudo curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash - &>/dev/null curl -fsSL https://deb.nodesource.com/setup_16.x | bash - &>/dev/null
msg_ok "Set up Node.js Repository" msg_ok "Set up Node.js Repository"
msg_info "Installing Node.js" msg_info "Installing Node.js"
sudo apt-get install -y nodejs git make g++ gcc &>/dev/null apt-get install -y nodejs &>/dev/null
msg_ok "Installed Node.js" msg_ok "Installed Node.js"
msg_info "Installing Yarn" msg_info "Installing Yarn"