mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-05-22 16:44:44 +00:00
6c0d7d4482
- checkmk: use github_api_call+jq for tag fetch, get_os_info codename in deb URL, strip +security suffix, bump default to Debian 13 - cockpit: remove source /etc/os-release, use get_os_info codename for backports suite/install, get_os_version_major for version check - flaresolverr: replace raw grep on /etc/os-release with get_os_version_major - lldap: remove source /etc/os-release, use get_os_info id+version for repo URL - mqtt: remove unused source /etc/os-release - pangolin: replace . /etc/os-release + VERSION_CODENAME with get_os_info codename - paperless-ngx: replace both . /etc/os-release + VERSION_CODENAME checks with get_os_info codename - photoprism: replace hardcoded bookworm in libheif URL with get_os_info codename - proxmox-datacenter-manager: replace grep on os-release string with get_os_version_major - wireguard: replace . /etc/os-release + VERSION_CODENAME with get_os_info codename - zabbix: replace . /etc/os-release + VERSION_CODENAME with get_os_info codename
72 lines
2.5 KiB
Bash
72 lines
2.5 KiB
Bash
#!/usr/bin/env bash
|
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
|
# Copyright (c) 2021-2026 tteck
|
|
# Author: tteck (tteckster)
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://www.photoprism.app/ | Github: https://github.com/photoprism/photoprism
|
|
|
|
APP="PhotoPrism"
|
|
var_tags="${var_tags:-media;photo}"
|
|
var_cpu="${var_cpu:-2}"
|
|
var_ram="${var_ram:-3072}"
|
|
var_disk="${var_disk:-8}"
|
|
var_os="${var_os:-debian}"
|
|
var_version="${var_version:-13}"
|
|
var_unprivileged="${var_unprivileged:-1}"
|
|
var_gpu="${var_gpu:-yes}"
|
|
|
|
header_info "$APP"
|
|
variables
|
|
color
|
|
catch_errors
|
|
|
|
function update_script() {
|
|
header_info
|
|
check_container_storage
|
|
check_container_resources
|
|
if [[ ! -d /opt/photoprism ]]; then
|
|
msg_error "No ${APP} Installation Found!"
|
|
exit
|
|
fi
|
|
if check_for_gh_release "photoprism" "photoprism/photoprism"; then
|
|
msg_info "Stopping PhotoPrism"
|
|
systemctl stop photoprism
|
|
msg_ok "Stopped PhotoPrism"
|
|
|
|
if ! grep -q "photoprism/config/.env" ~/.bashrc 2>/dev/null; then
|
|
msg_info "Adding environment export for CLI tools"
|
|
echo '# Load PhotoPrism environment variables for CLI tools' >>~/.bashrc
|
|
echo 'export $(grep -v "^#" /opt/photoprism/config/.env | xargs)' >>~/.bashrc
|
|
msg_ok "Added environment export"
|
|
fi
|
|
|
|
fetch_and_deploy_gh_release "photoprism" "photoprism/photoprism" "prebuild" "latest" "/opt/photoprism" "*linux-amd64.tar.gz"
|
|
|
|
LIBHEIF_URL=$(curl -fsSL "https://dl.photoprism.app/dist/libheif/" | grep -oP "libheif-$(get_os_info codename)-amd64-v[0-9\.]+\.tar\.gz" | sort -V | tail -n 1)
|
|
if [[ "${LIBHEIF_URL}" != "$(cat ~/.photoprism_libheif 2>/dev/null)" ]] || [[ ! -f ~/.photoprism_libheif ]]; then
|
|
msg_info "Updating PhotoPrism LibHeif"
|
|
ensure_dependencies libvips42
|
|
curl -fsSL "https://dl.photoprism.app/dist/libheif/$LIBHEIF_URL" -o /tmp/libheif.tar.gz
|
|
tar -xzf /tmp/libheif.tar.gz -C /usr/local
|
|
ldconfig
|
|
echo "${LIBHEIF_URL}" >~/.photoprism_libheif
|
|
msg_ok "Updated PhotoPrism LibHeif"
|
|
fi
|
|
|
|
msg_info "Starting PhotoPrism"
|
|
systemctl start photoprism
|
|
msg_ok "Started PhotoPrism"
|
|
msg_ok "Updated successfully!"
|
|
fi
|
|
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}:2342${CL}"
|