2025-11-02 23:49:54 -08:00
|
|
|
#!/usr/bin/env bash
|
2025-04-01 10:25:46 +02:00
|
|
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
2026-01-06 13:28:12 +01:00
|
|
|
# Copyright (c) 2021-2026 tteck
|
2025-11-05 14:20:33 +01:00
|
|
|
# Author: tteck | Co-Author: havardthom | Co-Author: Slaviša Arežina (tremor021)
|
2024-12-16 12:42:51 +01:00
|
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
|
|
|
# Source: https://openwebui.com/
|
2024-10-22 18:39:54 +02:00
|
|
|
|
|
|
|
|
APP="Open WebUI"
|
2025-04-10 11:56:52 +02:00
|
|
|
var_tags="${var_tags:-ai;interface}"
|
|
|
|
|
var_cpu="${var_cpu:-4}"
|
2025-05-08 21:41:59 +02:00
|
|
|
var_ram="${var_ram:-8192}"
|
2026-02-15 00:23:05 +01:00
|
|
|
var_disk="${var_disk:-50}"
|
2025-04-10 11:56:52 +02:00
|
|
|
var_os="${var_os:-debian}"
|
2025-11-05 14:20:33 +01:00
|
|
|
var_version="${var_version:-13}"
|
2025-04-10 11:56:52 +02:00
|
|
|
var_unprivileged="${var_unprivileged:-1}"
|
feat: Add var_gpu flag for GPU passthrough configuration (#9764)
* feat: Add var_gpu flag for GPU passthrough configuration
Changes:
- Add var_gpu variable to CT scripts for explicit GPU control
- Remove hardcoded GPU_APPS list - GPU detection now uses var_gpu flag
- Add var_gpu to VAR_WHITELIST for persistence in default.vars and app.vars
- Add GPU Passthrough option (Step 19) to advanced_settings wizard (now 20 steps)
- Update documentation
Apps with var_gpu=yes (GPU enabled by default):
- Media: jellyfin, plex, emby, channels, ersatztv, tunarr
- Transcoding: tdarr, unmanic, fileflows
- AI/ML: ollama, openwebui
- NVR: frigate, immich
Usage:
- Disable GPU: var_gpu=no bash -c '$(curl -fsSL ...jellyfin.sh)'
- Enable GPU: var_gpu=yes bash -c '$(curl -fsSL ...debian.sh)'
- Via default.vars: echo 'var_gpu=yes' >> /usr/local/community-scripts/default.vars
- Via advanced settings wizard (Step 19)
* fix: tput rmcup timing, GPU line indentation, echo_default GPU display
* style: add GPU icon variable for consistent formatting
2025-12-08 13:52:30 +01:00
|
|
|
var_gpu="${var_gpu:-yes}"
|
2024-12-16 12:42:51 +01:00
|
|
|
|
|
|
|
|
header_info "$APP"
|
2024-10-22 18:39:54 +02:00
|
|
|
variables
|
|
|
|
|
color
|
|
|
|
|
catch_errors
|
|
|
|
|
|
|
|
|
|
function update_script() {
|
2024-12-16 12:42:51 +01:00
|
|
|
header_info
|
|
|
|
|
check_container_storage
|
|
|
|
|
check_container_resources
|
2025-11-10 13:06:44 +01:00
|
|
|
|
|
|
|
|
if [[ -d /opt/open-webui ]]; then
|
|
|
|
|
msg_warn "Legacy installation detected — migrating to uv based install..."
|
|
|
|
|
msg_info "Stopping Service"
|
|
|
|
|
systemctl stop open-webui
|
|
|
|
|
msg_ok "Stopped Service"
|
|
|
|
|
|
|
|
|
|
msg_info "Creating Backup"
|
|
|
|
|
mkdir -p /opt/open-webui-backup
|
|
|
|
|
cp -a /opt/open-webui/backend/data /opt/open-webui-backup/data || true
|
2025-12-02 17:10:59 +01:00
|
|
|
cp -a /opt/open-webui/.env /opt/open-webui-backup/.env || true
|
2025-11-10 13:06:44 +01:00
|
|
|
msg_ok "Created Backup"
|
|
|
|
|
|
|
|
|
|
msg_info "Removing legacy installation"
|
|
|
|
|
rm -rf /opt/open-webui
|
|
|
|
|
rm -rf /root/.open-webui || true
|
|
|
|
|
msg_ok "Removed legacy installation"
|
|
|
|
|
|
|
|
|
|
msg_info "Installing uv-based Open-WebUI"
|
2026-02-13 11:26:19 +01:00
|
|
|
PYTHON_VERSION="3.12" setup_uv
|
|
|
|
|
$STD uv tool install --python 3.12 --constraint <(echo "numba>=0.60") open-webui[all]
|
2025-11-10 13:06:44 +01:00
|
|
|
msg_ok "Installed uv-based Open-WebUI"
|
|
|
|
|
|
|
|
|
|
msg_info "Restoring data"
|
|
|
|
|
mkdir -p /root/.open-webui
|
|
|
|
|
cp -a /opt/open-webui-backup/data/* /root/.open-webui/ || true
|
2025-12-02 17:10:59 +01:00
|
|
|
cp -a /opt/open-webui-backup/.env /root/.env || true
|
2025-11-10 13:06:44 +01:00
|
|
|
rm -rf /opt/open-webui-backup || true
|
|
|
|
|
msg_ok "Restored data"
|
|
|
|
|
|
|
|
|
|
msg_info "Recreating Service"
|
|
|
|
|
cat <<EOF >/etc/systemd/system/open-webui.service
|
|
|
|
|
[Unit]
|
|
|
|
|
Description=Open WebUI Service
|
|
|
|
|
After=network.target
|
|
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
|
Type=simple
|
|
|
|
|
Environment=DATA_DIR=/root/.open-webui
|
|
|
|
|
EnvironmentFile=-/root/.env
|
|
|
|
|
ExecStart=/root/.local/bin/open-webui serve
|
|
|
|
|
WorkingDirectory=/root
|
|
|
|
|
Restart=on-failure
|
|
|
|
|
RestartSec=5
|
|
|
|
|
User=root
|
|
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
|
WantedBy=multi-user.target
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
|
|
$STD systemctl daemon-reload
|
|
|
|
|
systemctl enable -q --now open-webui
|
|
|
|
|
msg_ok "Recreated Service"
|
|
|
|
|
|
|
|
|
|
msg_ok "Migration completed"
|
|
|
|
|
exit 0
|
|
|
|
|
fi
|
|
|
|
|
|
2025-11-05 14:20:33 +01:00
|
|
|
if [[ ! -d /root/.open-webui ]]; then
|
2024-12-16 12:42:51 +01:00
|
|
|
msg_error "No ${APP} Installation Found!"
|
|
|
|
|
exit
|
|
|
|
|
fi
|
2025-03-30 11:43:44 +02:00
|
|
|
|
2025-03-30 17:16:55 +02:00
|
|
|
if [ -x "/usr/bin/ollama" ]; then
|
2025-12-15 22:17:00 +01:00
|
|
|
msg_info "Checking for Ollama Update"
|
2025-03-30 17:16:55 +02:00
|
|
|
OLLAMA_VERSION=$(ollama -v | awk '{print $NF}')
|
|
|
|
|
RELEASE=$(curl -s https://api.github.com/repos/ollama/ollama/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4)}')
|
2025-03-30 11:43:44 +02:00
|
|
|
if [ "$OLLAMA_VERSION" != "$RELEASE" ]; then
|
2026-02-02 13:01:17 +01:00
|
|
|
ensure_dependencies zstd
|
2025-12-15 22:17:00 +01:00
|
|
|
msg_info "Ollama update available: v$OLLAMA_VERSION -> v$RELEASE"
|
|
|
|
|
msg_info "Downloading Ollama v$RELEASE \n"
|
2026-01-14 18:04:13 +01:00
|
|
|
curl -fS#LO https://github.com/ollama/ollama/releases/download/v${RELEASE}/ollama-linux-amd64.tar.zst
|
2025-12-15 22:17:00 +01:00
|
|
|
msg_ok "Download Complete"
|
|
|
|
|
|
2026-01-14 18:04:13 +01:00
|
|
|
if [ -f "ollama-linux-amd64.tar.zst" ]; then
|
2025-12-15 22:17:00 +01:00
|
|
|
|
|
|
|
|
msg_info "Stopping Ollama Service"
|
|
|
|
|
systemctl stop ollama
|
|
|
|
|
msg_ok "Stopped Service"
|
|
|
|
|
|
|
|
|
|
msg_info "Installing Ollama"
|
|
|
|
|
rm -rf /usr/lib/ollama
|
|
|
|
|
rm -rf /usr/bin/ollama
|
2026-01-14 18:04:13 +01:00
|
|
|
tar --zstd -C /usr -xf ollama-linux-amd64.tar.zst
|
|
|
|
|
rm -rf ollama-linux-amd64.tar.zst
|
2025-12-15 22:17:00 +01:00
|
|
|
msg_ok "Installed Ollama"
|
|
|
|
|
|
|
|
|
|
msg_info "Starting Ollama Service"
|
|
|
|
|
systemctl start ollama
|
|
|
|
|
msg_ok "Started Service"
|
|
|
|
|
|
|
|
|
|
msg_ok "Ollama updated to version $RELEASE"
|
|
|
|
|
else
|
|
|
|
|
msg_error "Ollama download failed. Aborting update."
|
|
|
|
|
fi
|
2025-03-30 11:43:44 +02:00
|
|
|
else
|
|
|
|
|
msg_ok "Ollama is already up to date."
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
2025-11-10 13:06:44 +01:00
|
|
|
msg_info "Updating Open WebUI via uv"
|
|
|
|
|
PYTHON_VERSION="3.12" setup_uv
|
2026-02-13 12:03:47 +01:00
|
|
|
$STD uv tool install --force --python 3.12 --constraint <(echo "numba>=0.60") open-webui[all]
|
2025-11-05 14:20:33 +01:00
|
|
|
systemctl restart open-webui
|
2025-11-10 13:06:44 +01:00
|
|
|
msg_ok "Updated Open WebUI"
|
2025-10-30 09:24:16 -07:00
|
|
|
msg_ok "Updated successfully!"
|
2024-10-22 18:39:54 +02:00
|
|
|
exit
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
start
|
|
|
|
|
build_container
|
|
|
|
|
description
|
|
|
|
|
|
2026-01-06 22:57:40 +01:00
|
|
|
msg_ok "Completed successfully!\n"
|
2024-12-16 12:42:51 +01:00
|
|
|
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
|
|
|
|
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
|
2025-05-08 21:41:59 +02:00
|
|
|
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080${CL}"
|