diff --git a/ct/nocodb.sh b/ct/nocodb.sh deleted file mode 100644 index 2a5263e79..000000000 --- a/ct/nocodb.sh +++ /dev/null @@ -1,55 +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: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: https://www.nocodb.com/ | Github: https://github.com/nocodb/nocodb - -APP="NocoDB" -var_tags="${var_tags:-noCode}" -var_cpu="${var_cpu:-1}" -var_ram="${var_ram:-1024}" -var_disk="${var_disk:-4}" -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 - #RELEASE="0.301.1" - if [[ ! -f /etc/systemd/system/nocodb.service ]]; then - msg_error "No ${APP} Installation Found!" - exit - fi - #if check_for_gh_release "nocodb" "nocodb/nocodb" "${RELEASE}"; then - if check_for_gh_release "nocodb" "nocodb/nocodb"; then - msg_info "Stopping Service" - systemctl stop nocodb - msg_ok "Stopped Service" - - fetch_and_deploy_gh_release "nocodb" "nocodb/nocodb" "singlefile" "latest" "/opt/nocodb/" "Noco-linux-$(arch_resolve "x64" "arm64")" - - msg_info "Starting Service" - systemctl start nocodb - msg_ok "Started Service" - 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}:8080/dashboard${CL}" diff --git a/install/nocodb-install.sh b/install/nocodb-install.sh deleted file mode 100644 index 7ac0a98ce..000000000 --- a/install/nocodb-install.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/usr/bin/env bash - -# Copyright (c) 2021-2026 tteck -# Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: https://www.nocodb.com/ | Github: https://github.com/nocodb/nocodb - -source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" -color -verb_ip6 -catch_errors -setting_up_container -network_check -update_os - -fetch_and_deploy_gh_release "nocodb" "nocodb/nocodb" "singlefile" "latest" "/opt/nocodb/" "Noco-linux-$(arch_resolve "x64" "arm64")" - -msg_info "Creating Service" -cat </etc/systemd/system/nocodb.service -[Unit] -Description=nocodb - -[Service] -Type=simple -Restart=always -User=root -WorkingDirectory=/opt/nocodb -ExecStart=/opt/nocodb/./nocodb - -[Install] -WantedBy=multi-user.target -EOF -systemctl enable -q --now nocodb -msg_ok "Created Service" - -motd_ssh -customize -cleanup_lxc