diff --git a/ct/cloudreve.sh b/ct/cloudreve.sh deleted file mode 100644 index ce5ee296..00000000 --- a/ct/cloudreve.sh +++ /dev/null @@ -1,58 +0,0 @@ -#!/usr/bin/env bash -source <(curl -s https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/misc/build.func) -# Copyright (c) 2021-2025 community-scripts ORG -# Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE -# Source: https://cloudreve.org/ - -APP="Cloudreve" -var_tags="${var_tags:-cloud}" -var_cpu="${var_cpu:-1}" -var_ram="${var_ram:-1024}" -var_disk="${var_disk:-10}" -var_os="${var_os:-debian}" -var_version="${var_version:-12}" -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/cloudreve ]]; then - msg_error "No ${APP} Installation Found!" - exit - fi - - RELEASE=$(curl -fsSL https://api.github.com/repos/cloudreve/cloudreve/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }') - if [[ "${RELEASE}" != "$(cat ~/.cloudreve 2>/dev/null)" ]] || [[ ! -f ~/.cloudreve ]]; then - msg_info "Stopping $APP" - systemctl stop cloudreve - msg_ok "Stopped $APP" - - fetch_and_deploy_gh_release "cloudreve" "cloudreve/cloudreve" "prebuild" "latest" "/opt/cloudreve" "*linux_amd64.tar.gz" - - msg_info "Starting $APP" - systemctl start cloudreve - msg_ok "Started $APP" - - msg_ok "Update Successful" - else - msg_ok "No update required. ${APP} is already at v${RELEASE}" - 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}:5212${CL}" diff --git a/frontend/public/json/cloudreve.json b/frontend/public/json/cloudreve.json deleted file mode 100644 index 61fa2ce0..00000000 --- a/frontend/public/json/cloudreve.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "name": "Cloudreve", - "slug": "cloudreve", - "categories": [ - 12 - ], - "date_created": "2025-07-17", - "type": "ct", - "updateable": false, - "privileged": false, - "interface_port": 5212, - "documentation": "https://docs.cloudreve.org/en/", - "website": "https://cloudreve.org/", - "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons/webp/cloudreve.webp", - "config_path": "/opt/cloudreve/data/config.ini", - "description": "Cloudreve is an open-source, community-driven cloud storage system that provides file sharing, synchronization, and management features. It supports a wide range of storage backends and integrates with various notification and logging platforms.", - "install_methods": [ - { - "type": "default", - "script": "ct/cloudreve.sh", - "resources": { - "cpu": 1, - "ram": 1024, - "hdd": 10, - "os": "Debian", - "version": "12" - } - } - ], - "default_credentials": { - "username": null, - "password": null - }, - "notes": [ - { - "text": "After Installation: Register your user -> Login -> Dashboard -> Accept Primary URL.", - "type": "warn" - } - ] -} diff --git a/install/cloudreve-install.sh b/install/cloudreve-install.sh deleted file mode 100644 index c7ef56fa..00000000 --- a/install/cloudreve-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/usr/bin/env bash - -# Copyright (c) 2021-2025 community-scripts ORG -# Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE -# Source: https://cloudreve.org/ - -source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" -color -verb_ip6 -catch_errors -setting_up_container -network_check -update_os - -fetch_and_deploy_gh_release "cloudreve" "cloudreve/cloudreve" "prebuild" "latest" "/opt/cloudreve" "*linux_amd64.tar.gz" - -msg_info "Setup Service" -cat </etc/systemd/system/cloudreve.service -[Unit] -Description=Cloudreve Service -After=network.target - -[Service] -Type=simple -ExecStart=/opt/cloudreve/cloudreve -Restart=on-failure -RestartSec=5 - -[Install] -WantedBy=multi-user.target -EOF - -systemctl enable -q --now cloudreve -msg_ok "Service Setup" - -motd_ssh -customize - -msg_info "Cleaning up" -$STD apt-get -y autoremove -$STD apt-get -y autoclean -msg_ok "Cleaned"