Files
ProxmoxVE/ct/umami.sh

60 lines
1.5 KiB
Bash
Raw Normal View History

2024-05-09 18:01:00 +02:00
#!/usr/bin/env bash
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
# Copyright (c) 2021-2025 tteck
2024-05-09 18:01:00 +02:00
# Author: tteck (tteckster)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://umami.is/
2024-05-09 18:01:00 +02:00
2024-05-10 14:21:33 -04:00
APP="Umami"
var_tags="${var_tags:-analytics}"
var_cpu="${var_cpu:-2}"
var_ram="${var_ram:-2048}"
var_disk="${var_disk:-12}"
var_os="${var_os:-debian}"
2025-10-09 19:43:23 +02:00
var_version="${var_version:-13}"
var_unprivileged="${var_unprivileged:-1}"
header_info "$APP"
2024-05-09 18:01:00 +02:00
variables
color
catch_errors
2024-06-21 05:16:23 -04:00
function update_script() {
header_info
check_container_storage
check_container_resources
if [[ ! -d /opt/umami ]]; then
msg_error "No ${APP} Installation Found!"
exit
fi
if check_for_gh_release "umami" "umami-software/umami"; then
2025-10-09 19:43:23 +02:00
msg_info "Stopping Service"
systemctl stop umami
2025-10-09 19:43:23 +02:00
msg_ok "Stopped Service"
2025-08-18 19:58:50 +02:00
fetch_and_deploy_gh_release "umami" "umami-software/umami" "tarball"
2025-10-09 19:43:23 +02:00
msg_info "Updating Umami"
cd /opt/umami
2025-08-18 19:58:50 +02:00
$STD yarn install
$STD yarn run build
2025-10-09 19:43:23 +02:00
msg_ok "Updated Umami"
2025-10-09 19:43:23 +02:00
msg_info "Starting Service"
systemctl start umami
2025-10-09 19:43:23 +02:00
msg_ok "Started Service"
msg_ok "Updated Successfully!"
fi
exit
2024-06-21 05:16:23 -04:00
}
2024-05-09 18:01:00 +02:00
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}"
2025-08-18 19:58:50 +02:00
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}"