diff --git a/ct/domain-locker.sh b/ct/domain-locker.sh new file mode 100644 index 000000000..09da327d7 --- /dev/null +++ b/ct/domain-locker.sh @@ -0,0 +1,78 @@ +#!/usr/bin/env bash +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) +# Copyright (c) 2021-2025 community-scripts ORG +# Author: CrazyWolf13 +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://github.com/Lissy93/domain-locker + +APP="Domain-Locker" +var_tags="${var_tags:-Monitoring}" +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_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/domain-locker ]]; then + msg_error "No ${APP} Installation Found!" + exit + fi + + if check_for_gh_release "domain-locker" "Lissy93/domain-locker"; then + msg_info "Stopping Service" + systemctl stop domain-locker + msg_info "Service stopped" + + CLEAN_INSTALL=1 fetch_and_deploy_gh_release "domain-locker" "Lissy93/domain-locker" + + msg_info "Updating Domain-Locker" + cd /opt/domain-locker + corepack enable + $STD yarn install --immutable + + +# Database connection +DL_PG_HOST=localhost +DL_PG_PORT=5432 +DL_PG_USER=postgres +DL_PG_PASSWORD=your-password +DL_PG_NAME=domain_locker + +# Build + Runtime +DL_ENV_TYPE=selfHosted +NITRO_PRESET=node_server + + export NODE_OPTIONS="--max-old-space-size=1024" + export DL_ENV_TYPE="selfHosted" + $STD npm ci --legacy-peer-deps + $STD npm run build + + setup_postgresql + msg_ok "Updated Domain-Locker" + + msg_info "Restarting Services" + systemctl start domain-locker + msg_ok "Restarted 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 "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}"