From 6be697e8ec4b236c610f817ce4057e96347a92be Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> Date: Wed, 24 Jun 2026 23:29:32 +0200 Subject: [PATCH] wger.sh --- ct/wger.sh | 78 ------------------------------------------------------ 1 file changed, 78 deletions(-) delete mode 100644 ct/wger.sh diff --git a/ct/wger.sh b/ct/wger.sh deleted file mode 100644 index ec96664b9..000000000 --- a/ct/wger.sh +++ /dev/null @@ -1,78 +0,0 @@ -#!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) -# Copyright (c) 2021-2026 community-scripts ORG -# Author: Slaviša Arežina (tremor021) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: https://github.com/wger-project/wger - -APP="wger" -var_tags="${var_tags:-management;fitness}" -var_cpu="${var_cpu:-2}" -var_ram="${var_ram:-2048}" -var_disk="${var_disk:-8}" -var_os="${var_os:-debian}" -var_version="${var_version:-13}" -var_arm64="${var_arm64:-yes}" -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/wger ]]; then - msg_error "No ${APP} Installation Found!" - exit - fi - - if check_for_gh_release "wger" "wger-project/wger"; then - msg_info "Stopping Service" - systemctl stop redis-server nginx celery celery-beat wger - msg_ok "Stopped Service" - - msg_info "Backing up Data" - cp -r /opt/wger/media /opt/wger_media_backup - cp /opt/wger/.env /opt/wger_env_backup - msg_ok "Backed up Data" - - CLEAN_INSTALL=1 fetch_and_deploy_gh_release "wger" "wger-project/wger" "tarball" - - msg_info "Restoring Data" - cp -r /opt/wger_media_backup/. /opt/wger/media - cp /opt/wger_env_backup /opt/wger/.env - rm -rf /opt/wger_media_backup /opt/wger_env_backup - - msg_ok "Restored Data" - - msg_info "Updating wger" - cd /opt/wger - set -a && source /opt/wger/.env && set +a - export DJANGO_SETTINGS_MODULE=settings.main - $STD uv pip install . - $STD npm install - $STD npm run build:css:sass - $STD uv run python manage.py migrate - $STD uv run python manage.py collectstatic --no-input - msg_ok "Updated wger" - - msg_info "Starting Services" - systemctl start redis-server nginx celery celery-beat wger - msg_ok "Started Services" - 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 "${GATEWAY}${BGN}http://${IP}:3000${CL}"