mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-03-03 14:55:54 +00:00
* bump(node): Node 22 to 24 for Tier 1 projects Bump Node.js from 22 to 24 in install and ct update scripts for projects where upstream already uses Node 24 in their Dockerfile/package.json: - Cross-seed (engines >=24, Dockerfile node:24-alpine) - Matterbridge (engines >=24.0.0, Dockerfile node:24-trixie-slim) - Manyfold (volta.node 24.13.0) - Pangolin (Dockerfile node:24-alpine) - ROMM (engines 24, nvm install 24) - SnowShare (Dockerfile node:24-alpine) - Verdaccio (engines >=18, Dockerfile node:24-alpine) Also adds missing NODE_VERSION setup_nodejs calls to ct update scripts for cross-seed, pangolin, romm, snowshare, and manyfold. * formatting * fix: pin NODE_VERSION for nodecast-tv and wealthfolio nodecast-tv: NODE_VERSION=20 (upstream Dockerfile uses nodesource/setup_20.x) wealthfolio: NODE_VERSION=20 (upstream Dockerfile uses node:20-alpine) * ci: add weekly Node.js version drift check workflow Scans all install scripts using setup_nodejs, fetches upstream package.json (engines.node) and Dockerfile (FROM node:XX), compares with our NODE_VERSION and opens/updates a GitHub issue on mismatch. Runs weekly on Monday at 06:00 UTC. * remove wf - seperate branch
51 lines
1.0 KiB
Bash
51 lines
1.0 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: luismco
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/technomancer702/nodecast-tv
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
|
|
fetch_and_deploy_gh_release "nodecast-tv" "technomancer702/nodecast-tv"
|
|
NODE_VERSION="20" setup_nodejs
|
|
|
|
msg_info "Installing Dependencies"
|
|
$STD apt install -y ffmpeg
|
|
msg_ok "Installed Dependencies"
|
|
|
|
msg_info "Installing Modules"
|
|
cd /opt/nodecast-tv
|
|
$STD npm install
|
|
msg_ok "Installed Modules"
|
|
|
|
msg_info "Creating Service"
|
|
cat <<EOF >/etc/systemd/system/nodecast-tv.service
|
|
[Unit]
|
|
Description=nodecast-tv
|
|
After=network.target
|
|
Wants=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
WorkingDirectory=/opt/nodecast-tv
|
|
ExecStart=/bin/npm run dev
|
|
Restart=on-failure
|
|
RestartSec=10
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
systemctl enable -q --now nodecast-tv
|
|
msg_ok "Created Service"
|
|
|
|
motd_ssh
|
|
customize
|
|
cleanup_lxc
|