mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-11-11 05:42:52 +00:00
* Migrate Open WebUI to uv-based installation Added migration logic to detect and upgrade legacy Open WebUI installations to a uv-based setup, including data backup and service recreation. Updated install and update scripts to use uv for installing Open WebUI and adjusted service configuration and cleanup steps accordingly. * english --------- Co-authored-by: Tobias <96661824+CrazyWolf13@users.noreply.github.com>
126 lines
3.5 KiB
Bash
126 lines
3.5 KiB
Bash
#!/usr/bin/env bash
|
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
|
# Copyright (c) 2021-2025 tteck
|
|
# Author: tteck | Co-Author: havardthom | Co-Author: Slaviša Arežina (tremor021)
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://openwebui.com/
|
|
|
|
APP="Open WebUI"
|
|
var_tags="${var_tags:-ai;interface}"
|
|
var_cpu="${var_cpu:-4}"
|
|
var_ram="${var_ram:-8192}"
|
|
var_disk="${var_disk:-25}"
|
|
var_os="${var_os:-debian}"
|
|
var_version="${var_version:-13}"
|
|
var_unprivileged="${var_unprivileged:-1}"
|
|
|
|
header_info "$APP"
|
|
variables
|
|
color
|
|
catch_errors
|
|
|
|
function update_script() {
|
|
header_info
|
|
check_container_storage
|
|
check_container_resources
|
|
|
|
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
|
|
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"
|
|
PYTHON_VERSION="3.12" setup_uv
|
|
$STD uv tool install --python $PYTHON_VERSION open-webui[all]
|
|
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
|
|
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
|
|
|
|
if [[ ! -d /root/.open-webui ]]; then
|
|
msg_error "No ${APP} Installation Found!"
|
|
exit
|
|
fi
|
|
|
|
if [ -x "/usr/bin/ollama" ]; then
|
|
msg_info "Updating Ollama"
|
|
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)}')
|
|
if [ "$OLLAMA_VERSION" != "$RELEASE" ]; then
|
|
msg_info "Stopping Service"
|
|
systemctl stop ollama
|
|
msg_ok "Stopped Service"
|
|
curl -fsSLO -C - https://ollama.com/download/ollama-linux-amd64.tgz
|
|
rm -rf /usr/lib/ollama
|
|
rm -rf /usr/bin/ollama
|
|
tar -C /usr -xzf ollama-linux-amd64.tgz
|
|
rm -rf ollama-linux-amd64.tgz
|
|
msg_info "Starting Service"
|
|
systemctl start ollama
|
|
msg_info "Started Service"
|
|
msg_ok "Ollama updated to version $RELEASE"
|
|
else
|
|
msg_ok "Ollama is already up to date."
|
|
fi
|
|
fi
|
|
|
|
msg_info "Updating Open WebUI via uv"
|
|
PYTHON_VERSION="3.12" setup_uv
|
|
$STD uv tool install --python 3.12 open-webui[all]
|
|
systemctl restart open-webui
|
|
msg_ok "Updated Open WebUI"
|
|
msg_ok "Updated successfully!"
|
|
exit
|
|
}
|
|
|
|
start
|
|
build_container
|
|
description
|
|
|
|
msg_ok "Completed Successfully!\n"
|
|
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
|
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
|
|
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080${CL}"
|