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