mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-05-16 13:34:58 +02:00
127 lines
3.7 KiB
Bash
127 lines
3.7 KiB
Bash
#!/usr/bin/env bash
|
||
|
||
# Copyright (c) 2021-2026 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/
|
||
|
||
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
||
color
|
||
verb_ip6
|
||
catch_errors
|
||
setting_up_container
|
||
network_check
|
||
update_os
|
||
|
||
msg_info "Installing Dependencies"
|
||
$STD apt install -y \
|
||
ffmpeg \
|
||
zstd \
|
||
build-essential \
|
||
libmariadb-dev
|
||
msg_ok "Installed Dependencies"
|
||
|
||
setup_hwaccel
|
||
|
||
PYTHON_VERSION="3.12" setup_uv
|
||
|
||
msg_info "Installing Open WebUI"
|
||
$STD uv tool install --python 3.12 --constraint <(echo "numba>=0.60") open-webui[all]
|
||
msg_ok "Installed Open WebUI"
|
||
|
||
read -r -p "${TAB3}Would you like to add Ollama? <y/N> " prompt
|
||
if [[ ${prompt,,} =~ ^(y|yes)$ ]]; then
|
||
msg_info "Setting up Intel® Repositories"
|
||
mkdir -p /usr/share/keyrings
|
||
curl -fsSL https://repositories.intel.com/gpu/intel-graphics.key | gpg --dearmor -o /usr/share/keyrings/intel-graphics.gpg 2>/dev/null || true
|
||
cat <<EOF >/etc/apt/sources.list.d/intel-gpu.sources
|
||
Types: deb
|
||
URIs: https://repositories.intel.com/gpu/ubuntu
|
||
Suites: jammy
|
||
Components: client
|
||
Architectures: amd64 i386
|
||
Signed-By: /usr/share/keyrings/intel-graphics.gpg
|
||
EOF
|
||
curl -fsSL https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor -o /usr/share/keyrings/oneapi-archive-keyring.gpg 2>/dev/null || true
|
||
cat <<EOF >/etc/apt/sources.list.d/oneAPI.sources
|
||
Types: deb
|
||
URIs: https://apt.repos.intel.com/oneapi
|
||
Suites: all
|
||
Components: main
|
||
Signed-By: /usr/share/keyrings/oneapi-archive-keyring.gpg
|
||
EOF
|
||
$STD apt update
|
||
msg_ok "Set up Intel® Repositories"
|
||
|
||
msg_info "Installing Intel® Level Zero"
|
||
# Debian 13+ has newer Level Zero packages in system repos that conflict with Intel repo packages
|
||
if is_debian && [[ "$(get_os_version_major)" -ge 13 ]]; then
|
||
# Use system packages on Debian 13+ (avoid conflicts with libze1)
|
||
$STD apt -y install libze1 libze-dev intel-level-zero-gpu 2>/dev/null || {
|
||
msg_warn "Failed to install some Level Zero packages, continuing anyway"
|
||
}
|
||
else
|
||
# Use Intel repository packages for older systems
|
||
$STD apt -y install intel-level-zero-gpu level-zero level-zero-dev 2>/dev/null || {
|
||
msg_warn "Failed to install Intel Level Zero packages, continuing anyway"
|
||
}
|
||
fi
|
||
msg_ok "Installed Intel® Level Zero"
|
||
|
||
msg_info "Installing Intel® oneAPI Base Toolkit (Patience)"
|
||
$STD apt install -y --no-install-recommends intel-basekit-2024.1 2>/dev/null || true
|
||
msg_ok "Installed Intel® oneAPI Base Toolkit"
|
||
|
||
msg_info "Installing Ollama"
|
||
if ! fetch_and_deploy_gh_release "ollama" "ollama/ollama" "prebuild" "latest" "/usr/lib/ollama" "ollama-linux-amd64.tar.zst"; then
|
||
msg_error "Failed to download or deploy Ollama – check network connectivity and GitHub API availability"
|
||
else
|
||
ln -sf /usr/lib/ollama/bin/ollama /usr/bin/ollama
|
||
cat <<EOF >/etc/systemd/system/ollama.service
|
||
[Unit]
|
||
Description=Ollama Service
|
||
After=network-online.target
|
||
|
||
[Service]
|
||
Type=exec
|
||
ExecStart=/usr/bin/ollama serve
|
||
Environment=HOME=$HOME
|
||
Environment=OLLAMA_HOST=0.0.0.0
|
||
Restart=always
|
||
RestartSec=3
|
||
|
||
[Install]
|
||
WantedBy=multi-user.target
|
||
EOF
|
||
systemctl enable -q --now ollama
|
||
echo "ENABLE_OLLAMA_API=true" >/root/.env
|
||
msg_ok "Installed Ollama"
|
||
fi
|
||
fi
|
||
|
||
msg_info "Creating Service"
|
||
cat <<EOF >/etc/systemd/system/open-webui.service
|
||
[Unit]
|
||
Description=Open WebUI Service
|
||
After=network.target
|
||
|
||
[Service]
|
||
Type=simple
|
||
EnvironmentFile=-/root/.env
|
||
Environment=DATA_DIR=/root/.open-webui
|
||
ExecStart=/root/.local/bin/open-webui serve
|
||
WorkingDirectory=/root
|
||
Restart=on-failure
|
||
RestartSec=5
|
||
User=root
|
||
|
||
[Install]
|
||
WantedBy=multi-user.target
|
||
EOF
|
||
systemctl enable -q --now open-webui
|
||
msg_ok "Created Service"
|
||
|
||
motd_ssh
|
||
customize
|
||
cleanup_lxc
|