Files

50 lines
999 B
Bash
Raw Permalink Normal View History

2023-03-22 20:48:20 -04:00
#!/usr/bin/env bash
# Copyright (c) 2021-2025 tteck
2023-03-22 20:48:20 -04:00
# Author: tteck (tteckster)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://uptime.kuma.pet/
2023-03-22 20:48:20 -04:00
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
2023-03-22 20:48:20 -04:00
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os
NODE_VERSION="22" setup_nodejs
2025-08-16 22:53:43 +02:00
fetch_and_deploy_gh_release "uptime-kuma" "louislam/uptime-kuma" "tarball"
2023-03-22 20:48:20 -04:00
msg_info "Installing Uptime Kuma"
cd /opt/uptime-kuma
2025-08-16 22:53:43 +02:00
$STD npm ci --omit dev
$STD npm run download-dist
2023-03-22 20:48:20 -04:00
msg_ok "Installed Uptime Kuma"
msg_info "Creating Service"
2025-08-16 22:53:43 +02:00
cat <<EOF >/etc/systemd/system/uptime-kuma.service
[Unit]
2023-03-22 20:48:20 -04:00
Description=uptime-kuma
[Service]
Type=simple
Restart=always
User=root
WorkingDirectory=/opt/uptime-kuma
ExecStart=/usr/bin/npm start
[Install]
2025-08-16 22:53:43 +02:00
WantedBy=multi-user.target
EOF
systemctl enable -q --now uptime-kuma
2023-03-22 20:48:20 -04:00
msg_ok "Created Service"
motd_ssh
2023-05-15 07:39:30 -04:00
customize
2023-03-22 20:48:20 -04:00
msg_info "Cleaning up"
2024-05-02 13:26:16 -04:00
$STD apt-get -y autoremove
$STD apt-get -y autoclean
2023-03-22 20:48:20 -04:00
msg_ok "Cleaned"