This commit is contained in:
MickLesk 2026-01-06 20:51:39 +01:00
parent 50e8da849a
commit 28db028ba7
2 changed files with 28 additions and 14 deletions

View File

@ -3,7 +3,7 @@ source <(curl -fsSL https://git.community-scripts.org/community-scripts/ProxmoxV
# Copyright (c) 2021-2026 community-scripts ORG # Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ) # Author: MickLesk (CanbiZ)
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/CorentinTh/papra # Source: https://github.com/papra-hq/papra
APP="Papra" APP="Papra"
var_tags="${var_tags:-document-management}" var_tags="${var_tags:-document-management}"
@ -27,17 +27,28 @@ function update_script() {
msg_error "No ${APP} Installation Found!" msg_error "No ${APP} Installation Found!"
exit exit
fi fi
msg_info "Updating Papra LXC" RELEASE=$(curl -fsSL https://api.github.com/repos/papra-hq/papra/releases | grep -oP '"tag_name":\s*"\K@papra/docker@[^"]+' | head -n1)
systemctl stop papra if [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt 2>/dev/null)" ]] || [[ ! -f /opt/${APP}_version.txt ]]; then
cd /opt/papra msg_info "Stopping Service"
git fetch systemctl stop papra
git pull msg_ok "Stopped Service"
$STD pnpm install --frozen-lockfile
$STD pnpm --filter "@papra/app-client..." run build msg_info "Updating ${APP} to ${RELEASE}"
$STD pnpm --filter "@papra/app-server..." run build cd /opt/papra
systemctl start papra fetch_and_deploy_gh_release "papra" "papra-hq/papra" "tarball" "${RELEASE}" "/opt/papra"
msg_ok "Updated Papra LXC" $STD pnpm install --frozen-lockfile
msg_ok "Updated successfully!" $STD pnpm --filter "@papra/app-client..." run build
$STD pnpm --filter "@papra/app-server..." run build
echo "${RELEASE}" >/opt/${APP}_version.txt
msg_ok "Updated ${APP} to ${RELEASE}"
msg_info "Starting Service"
systemctl start papra
msg_ok "Started Service"
msg_ok "Updated successfully!"
else
msg_ok "No update required. ${APP} is already at ${RELEASE}"
fi
exit exit
} }
@ -46,4 +57,6 @@ build_container
description description
msg_ok "Completed successfully!\n" msg_ok "Completed successfully!\n"
msg_custom "🚀" "${GN}" "${APP} setup has been successfully initialized!" 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}:1221${CL}"

View File

@ -30,7 +30,7 @@ cd /opt/papra
export COREPACK_ENABLE_NETWORK=1 export COREPACK_ENABLE_NETWORK=1
$STD corepack enable $STD corepack enable
$STD corepack prepare pnpm@10.19.0 --activate $STD corepack prepare pnpm@10.19.0 --activate
$STD pnpm install --frozen-lockfile --ignore-scripts $STD pnpm install --frozen-lockfile
$STD pnpm --filter "@papra/app-client..." run build $STD pnpm --filter "@papra/app-client..." run build
$STD pnpm --filter "@papra/app-server..." run build $STD pnpm --filter "@papra/app-server..." run build
msg_ok "Set up Papra" msg_ok "Set up Papra"
@ -94,6 +94,7 @@ WantedBy=multi-user.target
EOF EOF
systemctl enable -q --now papra systemctl enable -q --now papra
echo "${RELEASE}" >/opt/Papra_version.txt
msg_ok "Created and Started Papra Service" msg_ok "Created and Started Papra Service"
motd_ssh motd_ssh