Compare commits

..

No commits in common. "4a1ccb5d3dea601ef8d97d1719605d0b05a683cf" and "39d8721d367b7a5e5ee0045e13ac1c1834f2ab58" have entirely different histories.

5 changed files with 5 additions and 11 deletions

View File

@ -20,7 +20,7 @@ EOF
header_info
echo -e "Loading..."
APP="Alpine-Grafana"
var_disk="1"
var_disk="0.5"
var_cpu="1"
var_ram="256"
var_os="alpine"

View File

@ -20,8 +20,8 @@ header_info
echo -e "Loading..."
APP="FlowiseAI"
var_disk="10"
var_cpu="4"
var_ram="4096"
var_cpu="2"
var_ram="2048"
var_os="debian"
var_version="12"
variables
@ -67,10 +67,6 @@ start
build_container
description
msg_info "Setting Container to Normal Resources"
pct set $CTID -memory 2048
pct set $CTID -cores 2
msg_ok "Set Container to Normal Resources"
msg_ok "Completed Successfully!\n"
echo -e "${APP} should be reachable by going to the following URL.
${BL}http://${IP}:3000${CL} \n"

View File

@ -76,7 +76,6 @@ if [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]] || [[ ! -f /opt/${APP}
pnpm install
pnpm build
systemctl start homepage
echo "${RELEASE}" >/opt/${APP}_version.txt
msg_ok "Updated Homepage to v${RELEASE}"
else
msg_ok "No update required. ${APP} is already at ${RELEASE}"

View File

@ -37,8 +37,7 @@ $STD apt-get install -y \
python3-pip \
python3-venv \
python3-cffi \
python3-certbot \
python3-certbot-dns-cloudflare
python3-certbot
$STD pip3 install certbot-dns-multi
$STD python3 -m venv /opt/certbot/
msg_ok "Installed Python Dependencies"

View File

@ -205,7 +205,7 @@ advanced_settings() {
if var_version=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "UBUNTU VERSION" --radiolist "Choose Version" 10 58 3 \
"20.04" "Focal" OFF \
"22.04" "Jammy" OFF \
"24.04" "Noble" OFF \
"23.10" "Mantic" OFF \
3>&1 1>&2 2>&3); then
if [ -n "$var_version" ]; then
echo -e "${DGN}Using $var_os Version: ${BGN}$var_version${CL}"