From a6be48f22b7728b1aaa457c53d5e72e119359ec4 Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Mon, 2 Feb 2026 13:09:51 +0100 Subject: [PATCH] Remove Memos script - project no longer provides release binaries (#11464) --- ct/headers/memos | 6 ---- ct/memos.sh | 52 --------------------------------- frontend/public/json/memos.json | 35 ---------------------- install/memos-install.sh | 42 -------------------------- 4 files changed, 135 deletions(-) delete mode 100644 ct/headers/memos delete mode 100644 ct/memos.sh delete mode 100644 frontend/public/json/memos.json delete mode 100644 install/memos-install.sh diff --git a/ct/headers/memos b/ct/headers/memos deleted file mode 100644 index 6a8cb0477..000000000 --- a/ct/headers/memos +++ /dev/null @@ -1,6 +0,0 @@ - __ ___ - / |/ /__ ____ ___ ____ _____ - / /|_/ / _ \/ __ `__ \/ __ \/ ___/ - / / / / __/ / / / / / /_/ (__ ) -/_/ /_/\___/_/ /_/ /_/\____/____/ - diff --git a/ct/memos.sh b/ct/memos.sh deleted file mode 100644 index 44f0b18d5..000000000 --- a/ct/memos.sh +++ /dev/null @@ -1,52 +0,0 @@ -#!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) -# Copyright (c) 2021-2026 tteck -# Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: https://www.usememos.com/ - -APP="Memos" -var_tags="${var_tags:-notes}" -var_cpu="${var_cpu:-1}" -var_ram="${var_ram:-1024}" -var_disk="${var_disk:-3}" -var_os="${var_os:-debian}" -var_version="${var_version:-13}" -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/memos ]]; then - msg_error "No ${APP} Installation Found!" - exit - fi - if check_for_gh_release "memos" "usememos/memos"; then - msg_info "Stopping service" - systemctl stop memos - msg_ok "Service stopped" - - fetch_and_deploy_gh_release "memos" "usememos/memos" "prebuild" "latest" "/opt/memos" "memos*linux_amd64.tar.gz" - - msg_info "Starting service" - systemctl start memos - msg_ok "Service started" - 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}:9030${CL}" diff --git a/frontend/public/json/memos.json b/frontend/public/json/memos.json deleted file mode 100644 index 176a00268..000000000 --- a/frontend/public/json/memos.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "name": "Memos", - "slug": "memos", - "categories": [ - 12 - ], - "date_created": "2024-10-31", - "type": "ct", - "updateable": true, - "privileged": false, - "interface_port": 9030, - "documentation": "https://www.usememos.com/docs", - "website": "https://www.usememos.com/", - "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/memos.webp", - "config_path": "", - "description": "Memos is an open-source, self-hosted platform designed for fast, privacy-focused note-taking. Users can create, organize, and format notes with Markdown, which are securely stored in a local database. It\u2019s lightweight and customizable, built for quick access and adaptability to individual or team needs.", - "install_methods": [ - { - "type": "default", - "script": "ct/memos.sh", - "resources": { - "cpu": 1, - "ram": 1024, - "hdd": 3, - "os": "debian", - "version": "13" - } - } - ], - "default_credentials": { - "username": null, - "password": null - }, - "notes": [] -} diff --git a/install/memos-install.sh b/install/memos-install.sh deleted file mode 100644 index f95530327..000000000 --- a/install/memos-install.sh +++ /dev/null @@ -1,42 +0,0 @@ -#!/usr/bin/env bash - -# Copyright (c) 2021-2026 tteck -# Author: tteck -# Co-Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: https://github.com/usememos/memos - -source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" -color -verb_ip6 -catch_errors -setting_up_container -network_check -update_os - -fetch_and_deploy_gh_release "memos" "usememos/memos" "prebuild" "latest" "/opt/memos" "memos*linux_amd64.tar.gz" -mkdir -p /opt/memos_data - -msg_info "Creating Service" -cat </etc/systemd/system/memos.service -[Unit] -Description=Memos Server -After=network.target - -[Service] -ExecStart=/opt/memos/memos -Environment="MEMOS_MODE=prod" -Environment="MEMOS_PORT=9030" -Environment="MEMOS_DATA=/opt/memos_data" -WorkingDirectory=/opt/memos -Restart=always - -[Install] -WantedBy=multi-user.target -EOF -systemctl enable -q --now memos -msg_ok "Created Service" - -motd_ssh -customize -cleanup_lxc