mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-12-19 05:26:26 +01:00
Compare commits
12 Commits
CrazyWolf1
...
feature/gi
| Author | SHA1 | Date | |
|---|---|---|---|
| 4bf858f423 | |||
| e2703f7930 | |||
| 4545946328 | |||
| a6b8424f00 | |||
| 5df838ee7f | |||
| 16c6014484 | |||
| cc7eb7fd35 | |||
| b605e463d1 | |||
| 71c2f4e7f8 | |||
| 648ca5e4d0 | |||
| 0917921225 | |||
| c269dc3b13 |
512
.github/workflows/update-versions-github.yml
generated
vendored
Normal file
512
.github/workflows/update-versions-github.yml
generated
vendored
Normal file
@ -0,0 +1,512 @@
|
|||||||
|
name: Update Versions from GitHub
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
# Runs at 06:00 and 18:00 UTC
|
||||||
|
- cron: "0 6,18 * * *"
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
pull-requests: write
|
||||||
|
|
||||||
|
env:
|
||||||
|
SOURCES_FILE: frontend/public/json/version-sources.json
|
||||||
|
VERSIONS_FILE: frontend/public/json/versions.json
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update-versions:
|
||||||
|
if: github.repository == 'community-scripts/ProxmoxVE'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout Repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
ref: main
|
||||||
|
|
||||||
|
- name: Generate GitHub App Token
|
||||||
|
id: generate-token
|
||||||
|
uses: actions/create-github-app-token@v1
|
||||||
|
with:
|
||||||
|
app-id: ${{ vars.APP_ID }}
|
||||||
|
private-key: ${{ secrets.APP_PRIVATE_KEY }}
|
||||||
|
|
||||||
|
- name: Extract version sources from install scripts
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
echo "========================================="
|
||||||
|
echo " Extracting version sources from scripts"
|
||||||
|
echo "========================================="
|
||||||
|
|
||||||
|
# Initialize sources array
|
||||||
|
sources_json="[]"
|
||||||
|
|
||||||
|
# Function to add a source entry
|
||||||
|
add_source() {
|
||||||
|
local slug="$1"
|
||||||
|
local type="$2"
|
||||||
|
local source="$3"
|
||||||
|
local script="$4"
|
||||||
|
|
||||||
|
# Check if slug already exists (avoid duplicates)
|
||||||
|
if echo "$sources_json" | jq -e ".[] | select(.slug == \"$slug\")" > /dev/null 2>&1; then
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
sources_json=$(echo "$sources_json" | jq \
|
||||||
|
--arg slug "$slug" \
|
||||||
|
--arg type "$type" \
|
||||||
|
--arg source "$source" \
|
||||||
|
--arg script "$script" \
|
||||||
|
'. += [{"slug": $slug, "type": $type, "source": $source, "script": $script, "version": null, "date": null}]')
|
||||||
|
}
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "=== Method 1: fetch_and_deploy_gh_release calls ==="
|
||||||
|
count=0
|
||||||
|
for script in install/*-install.sh; do
|
||||||
|
[[ ! -f "$script" ]] && continue
|
||||||
|
slug=$(basename "$script" | sed 's/-install\.sh$//')
|
||||||
|
|
||||||
|
# Extract repo from fetch_and_deploy_gh_release "app" "owner/repo"
|
||||||
|
while IFS= read -r line; do
|
||||||
|
if [[ "$line" =~ fetch_and_deploy_gh_release[[:space:]]+\"[^\"]*\"[[:space:]]+\"([^\"]+)\" ]]; then
|
||||||
|
repo="${BASH_REMATCH[1]}"
|
||||||
|
add_source "$slug" "github" "$repo" "$script"
|
||||||
|
((count++))
|
||||||
|
break # Only first match per script
|
||||||
|
fi
|
||||||
|
done < <(grep 'fetch_and_deploy_gh_release' "$script" 2>/dev/null || true)
|
||||||
|
done
|
||||||
|
echo "Found $count scripts with fetch_and_deploy_gh_release"
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "=== Method 2: GitHub URLs in scripts (fallback) ==="
|
||||||
|
count=0
|
||||||
|
for script in install/*-install.sh; do
|
||||||
|
[[ ! -f "$script" ]] && continue
|
||||||
|
slug=$(basename "$script" | sed 's/-install\.sh$//')
|
||||||
|
|
||||||
|
# Skip if already found
|
||||||
|
if echo "$sources_json" | jq -e ".[] | select(.slug == \"$slug\")" > /dev/null 2>&1; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Look for github.com/owner/repo patterns
|
||||||
|
repo=$(grep -oE 'github\.com/([a-zA-Z0-9_-]+/[a-zA-Z0-9_.-]+)' "$script" 2>/dev/null \
|
||||||
|
| sed 's|github\.com/||' \
|
||||||
|
| sed 's/\.git$//' \
|
||||||
|
| grep -v 'community-scripts/ProxmoxVE' \
|
||||||
|
| grep -v '^repos/' \
|
||||||
|
| head -1 || true)
|
||||||
|
|
||||||
|
if [[ -n "$repo" && "$repo" =~ ^[a-zA-Z0-9_-]+/[a-zA-Z0-9_.-]+$ ]]; then
|
||||||
|
add_source "$slug" "github" "$repo" "$script"
|
||||||
|
((count++))
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
echo "Found $count additional scripts with GitHub URLs"
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "=== Method 3: npm packages ==="
|
||||||
|
# Detect npm install --global <package>
|
||||||
|
for script in install/*-install.sh; do
|
||||||
|
[[ ! -f "$script" ]] && continue
|
||||||
|
slug=$(basename "$script" | sed 's/-install\.sh$//')
|
||||||
|
|
||||||
|
# Skip if already found
|
||||||
|
if echo "$sources_json" | jq -e ".[] | select(.slug == \"$slug\")" > /dev/null 2>&1; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Look for npm install --global <package>
|
||||||
|
pkg=$(grep -oE 'npm install[^|;]*--global[^|;]*' "$script" 2>/dev/null \
|
||||||
|
| grep -oE '\s[a-z][a-z0-9_-]+(@[^\s]+)?$' \
|
||||||
|
| tr -d ' ' \
|
||||||
|
| sed 's/@.*//' \
|
||||||
|
| tail -1 || true)
|
||||||
|
|
||||||
|
if [[ -n "$pkg" ]]; then
|
||||||
|
add_source "$slug" "npm" "$pkg" "$script"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "=== Method 4: Docker images ==="
|
||||||
|
# Known Docker-based apps (from docker pull or docker run)
|
||||||
|
declare -A docker_mappings=(
|
||||||
|
["homeassistant"]="homeassistant/home-assistant"
|
||||||
|
["portainer"]="portainer/portainer-ce"
|
||||||
|
["dockge"]="louislam/dockge"
|
||||||
|
["immich"]="ghcr.io/immich-app/immich-server"
|
||||||
|
["audiobookshelf"]="ghcr.io/advplyr/audiobookshelf"
|
||||||
|
["podman-homeassistant"]="homeassistant/home-assistant"
|
||||||
|
)
|
||||||
|
|
||||||
|
for slug in "${!docker_mappings[@]}"; do
|
||||||
|
image="${docker_mappings[$slug]}"
|
||||||
|
if ! echo "$sources_json" | jq -e ".[] | select(.slug == \"$slug\")" > /dev/null 2>&1; then
|
||||||
|
add_source "$slug" "docker" "$image" "install/${slug}-install.sh"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "=== Method 5: Manual GitHub mappings (apt-based apps) ==="
|
||||||
|
# Apps that install via apt but have GitHub releases for version tracking
|
||||||
|
declare -A manual_github_mappings=(
|
||||||
|
["actualbudget"]="actualbudget/actual"
|
||||||
|
["apache-cassandra"]="apache/cassandra"
|
||||||
|
["apache-couchdb"]="apache/couchdb"
|
||||||
|
["apache-guacamole"]="apache/guacamole-server"
|
||||||
|
["apache-tomcat"]="apache/tomcat"
|
||||||
|
["archivebox"]="ArchiveBox/ArchiveBox"
|
||||||
|
["aria2"]="aria2/aria2"
|
||||||
|
["asterisk"]="asterisk/asterisk"
|
||||||
|
["casaos"]="IceWhaleTech/CasaOS"
|
||||||
|
["checkmk"]="Checkmk/checkmk"
|
||||||
|
["cloudflared"]="cloudflare/cloudflared"
|
||||||
|
["coolify"]="coollabsio/coolify"
|
||||||
|
["crafty-controller"]="crafty-controller/crafty-4"
|
||||||
|
["cross-seed"]="cross-seed/cross-seed"
|
||||||
|
["deconz"]="dresden-elektronik/deconz-rest-plugin"
|
||||||
|
["deluge"]="deluge-torrent/deluge"
|
||||||
|
["dokploy"]="Dokploy/dokploy"
|
||||||
|
["emqx"]="emqx/emqx"
|
||||||
|
["esphome"]="esphome/esphome"
|
||||||
|
["flowiseai"]="FlowiseAI/Flowise"
|
||||||
|
["forgejo"]="forgejo/forgejo"
|
||||||
|
["garage"]="deuxfleurs-org/garage"
|
||||||
|
["ghost"]="TryGhost/Ghost"
|
||||||
|
["grafana"]="grafana/grafana"
|
||||||
|
["graylog"]="Graylog2/graylog2-server"
|
||||||
|
["homebridge"]="homebridge/homebridge"
|
||||||
|
["hyperhdr"]="awawa-dev/HyperHDR"
|
||||||
|
["hyperion"]="hyperion-project/hyperion.ng"
|
||||||
|
["influxdb"]="influxdata/influxdb"
|
||||||
|
["iobroker"]="ioBroker/ioBroker"
|
||||||
|
["jenkins"]="jenkinsci/jenkins"
|
||||||
|
["komodo"]="moghingold/komodo"
|
||||||
|
["lazylibrarian"]="lazylibrarian/LazyLibrarian"
|
||||||
|
["limesurvey"]="LimeSurvey/LimeSurvey"
|
||||||
|
["mariadb"]="MariaDB/server"
|
||||||
|
["mattermost"]="mattermost/mattermost"
|
||||||
|
["meshcentral"]="Ylianst/MeshCentral"
|
||||||
|
["metabase"]="metabase/metabase"
|
||||||
|
["mongodb"]="mongodb/mongo"
|
||||||
|
["mysql"]="mysql/mysql-server"
|
||||||
|
["neo4j"]="neo4j/neo4j"
|
||||||
|
["node-red"]="node-red/node-red"
|
||||||
|
["ntfy"]="binwiederhier/ntfy"
|
||||||
|
["nzbget"]="nzbgetcom/nzbget"
|
||||||
|
["octoprint"]="OctoPrint/OctoPrint"
|
||||||
|
["onedev"]="theonedev/onedev"
|
||||||
|
["onlyoffice"]="ONLYOFFICE/DocumentServer"
|
||||||
|
["openhab"]="openhab/openhab-distro"
|
||||||
|
["openobserve"]="openobserve/openobserve"
|
||||||
|
["openwebui"]="open-webui/open-webui"
|
||||||
|
["passbolt"]="passbolt/passbolt_api"
|
||||||
|
["pihole"]="pi-hole/pi-hole"
|
||||||
|
["postgresql"]="postgres/postgres"
|
||||||
|
["rabbitmq"]="rabbitmq/rabbitmq-server"
|
||||||
|
["readarr"]="Readarr/Readarr"
|
||||||
|
["redis"]="redis/redis"
|
||||||
|
["runtipi"]="runtipi/runtipi"
|
||||||
|
["sftpgo"]="drakkan/sftpgo"
|
||||||
|
["shinobi"]="ShinobiCCTV/Shinobi"
|
||||||
|
["sonarqube"]="SonarSource/sonarqube"
|
||||||
|
["sonarr"]="Sonarr/Sonarr"
|
||||||
|
["syncthing"]="syncthing/syncthing"
|
||||||
|
["tdarr"]="HaveAGitGat/Tdarr"
|
||||||
|
["technitiumdns"]="TechnitiumSoftware/DnsServer"
|
||||||
|
["transmission"]="transmission/transmission"
|
||||||
|
["typesense"]="typesense/typesense"
|
||||||
|
["unmanic"]="Unmanic/unmanic"
|
||||||
|
["valkey"]="valkey-io/valkey"
|
||||||
|
["verdaccio"]="verdaccio/verdaccio"
|
||||||
|
["vikunja"]="go-vikunja/vikunja"
|
||||||
|
["wazuh"]="wazuh/wazuh"
|
||||||
|
["wordpress"]="WordPress/WordPress"
|
||||||
|
["zabbix"]="zabbix/zabbix"
|
||||||
|
["zammad"]="zammad/zammad"
|
||||||
|
["zerotier-one"]="zerotier/ZeroTierOne"
|
||||||
|
# Apps without known GitHub repos (use "-" as placeholder)
|
||||||
|
["agentdvr"]="-"
|
||||||
|
["apt-cacher-ng"]="-"
|
||||||
|
["channels"]="-"
|
||||||
|
["daemonsync"]="-"
|
||||||
|
["dotnetaspwebapi"]="-"
|
||||||
|
["fhem"]="-"
|
||||||
|
["fileflows"]="-"
|
||||||
|
["fumadocs"]="-"
|
||||||
|
["infisical"]="-"
|
||||||
|
["itsm-ng"]="-"
|
||||||
|
["jupyternotebook"]="-"
|
||||||
|
["kasm"]="-"
|
||||||
|
["lyrionmusicserver"]="-"
|
||||||
|
["minarca"]="-"
|
||||||
|
["mqtt"]="-"
|
||||||
|
["nextcloudpi"]="-"
|
||||||
|
["nextpvr"]="-"
|
||||||
|
["notifiarr"]="-"
|
||||||
|
["nxwitness"]="-"
|
||||||
|
["omada"]="-"
|
||||||
|
["omv"]="-"
|
||||||
|
["plex"]="-"
|
||||||
|
["podman"]="-"
|
||||||
|
["readeck"]="-"
|
||||||
|
["resiliosync"]="-"
|
||||||
|
["smokeping"]="-"
|
||||||
|
["splunk-enterprise"]="-"
|
||||||
|
["sqlserver2022"]="-"
|
||||||
|
["swizzin"]="-"
|
||||||
|
["teamspeak-server"]="-"
|
||||||
|
["twingate-connector"]="-"
|
||||||
|
["unifi"]="-"
|
||||||
|
["urbackupserver"]="-"
|
||||||
|
["yunohost"]="-"
|
||||||
|
)
|
||||||
|
|
||||||
|
for slug in "${!manual_github_mappings[@]}"; do
|
||||||
|
repo="${manual_github_mappings[$slug]}"
|
||||||
|
if ! echo "$sources_json" | jq -e ".[] | select(.slug == \"$slug\")" > /dev/null 2>&1; then
|
||||||
|
# Skip placeholder entries in extraction, they get added in Method 8
|
||||||
|
[[ "$repo" == "-" ]] && continue
|
||||||
|
add_source "$slug" "github" "$repo" "install/${slug}-install.sh"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "=== Method 6: Proxmox LXC templates ==="
|
||||||
|
# Base OS versions from Proxmox template index
|
||||||
|
declare -A pveam_mappings=(
|
||||||
|
["debian"]="pveam:debian"
|
||||||
|
["ubuntu"]="pveam:ubuntu"
|
||||||
|
["alpine"]="pveam:alpine"
|
||||||
|
)
|
||||||
|
|
||||||
|
for slug in "${!pveam_mappings[@]}"; do
|
||||||
|
template="${pveam_mappings[$slug]}"
|
||||||
|
if ! echo "$sources_json" | jq -e ".[] | select(.slug == \"$slug\")" > /dev/null 2>&1; then
|
||||||
|
add_source "$slug" "pveam" "$template" "ct/${slug}.sh"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "=== Method 7: Special sources ==="
|
||||||
|
# Home Assistant OS VM
|
||||||
|
if ! echo "$sources_json" | jq -e ".[] | select(.slug == \"haos-vm\")" > /dev/null 2>&1; then
|
||||||
|
add_source "haos-vm" "github" "home-assistant/operating-system" "vm/haos-vm.sh"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "=== Method 8: Unknown/Manual apps ==="
|
||||||
|
# Apps without known version sources - add with type "manual" for manual updates
|
||||||
|
unknown_apps=(
|
||||||
|
"agentdvr" "apt-cacher-ng" "channels" "daemonsync" "dotnetaspwebapi"
|
||||||
|
"fhem" "fileflows" "fumadocs" "infisical" "itsm-ng" "jupyternotebook"
|
||||||
|
"kasm" "lyrionmusicserver" "minarca" "mqtt" "nextcloudpi" "nextpvr"
|
||||||
|
"notifiarr" "nxwitness" "omada" "omv" "plex" "podman" "readeck"
|
||||||
|
"resiliosync" "smokeping" "splunk-enterprise" "sqlserver2022" "swizzin"
|
||||||
|
"teamspeak-server" "twingate-connector" "unifi" "urbackupserver" "yunohost"
|
||||||
|
)
|
||||||
|
|
||||||
|
for slug in "${unknown_apps[@]}"; do
|
||||||
|
if ! echo "$sources_json" | jq -e ".[] | select(.slug == \"$slug\")" > /dev/null 2>&1; then
|
||||||
|
add_source "$slug" "manual" "-" "install/${slug}-install.sh"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# Save sources file
|
||||||
|
echo "$sources_json" | jq --arg date "$(date -u +%Y-%m-%dT%H:%M:%SZ)" \
|
||||||
|
'{generated: $date, sources: (. | sort_by(.slug))}' > "$SOURCES_FILE"
|
||||||
|
|
||||||
|
total=$(echo "$sources_json" | jq 'length')
|
||||||
|
echo ""
|
||||||
|
echo "========================================="
|
||||||
|
echo " Total sources extracted: $total"
|
||||||
|
echo "========================================="
|
||||||
|
|
||||||
|
- name: Fetch versions for all sources
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ steps.generate-token.outputs.token }}
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
echo "========================================="
|
||||||
|
echo " Fetching versions from sources"
|
||||||
|
echo "========================================="
|
||||||
|
|
||||||
|
success=0
|
||||||
|
failed=0
|
||||||
|
manual=0
|
||||||
|
total=$(jq '.sources | length' "$SOURCES_FILE")
|
||||||
|
|
||||||
|
# Process each source
|
||||||
|
for i in $(seq 0 $((total - 1))); do
|
||||||
|
entry=$(jq -r ".sources[$i]" "$SOURCES_FILE")
|
||||||
|
slug=$(echo "$entry" | jq -r '.slug')
|
||||||
|
type=$(echo "$entry" | jq -r '.type')
|
||||||
|
source=$(echo "$entry" | jq -r '.source')
|
||||||
|
|
||||||
|
echo -n "[$((i+1))/$total] $slug ($type: $source) ... "
|
||||||
|
|
||||||
|
version=""
|
||||||
|
date=""
|
||||||
|
|
||||||
|
case "$type" in
|
||||||
|
github)
|
||||||
|
# Try releases first
|
||||||
|
response=$(gh api "repos/${source}/releases/latest" 2>/dev/null || echo '{"message": "Not Found"}')
|
||||||
|
|
||||||
|
if echo "$response" | jq -e '.tag_name' > /dev/null 2>&1; then
|
||||||
|
version=$(echo "$response" | jq -r '.tag_name')
|
||||||
|
date=$(echo "$response" | jq -r '.published_at // empty')
|
||||||
|
else
|
||||||
|
# Fallback to tags
|
||||||
|
version=$(gh api "repos/${source}/tags" --jq '.[0].name // empty' 2>/dev/null || echo "")
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
npm)
|
||||||
|
response=$(curl -fsSL "https://registry.npmjs.org/${source}/latest" 2>/dev/null || echo '{}')
|
||||||
|
version=$(echo "$response" | jq -r '.version // empty')
|
||||||
|
;;
|
||||||
|
|
||||||
|
docker)
|
||||||
|
if [[ "$source" == ghcr.io/* ]]; then
|
||||||
|
# GitHub Container Registry
|
||||||
|
ghcr_path="${source#ghcr.io/}"
|
||||||
|
owner="${ghcr_path%%/*}"
|
||||||
|
pkg="${ghcr_path##*/}"
|
||||||
|
version=$(gh api "users/${owner}/packages/container/${pkg}/versions" --jq '.[0].metadata.container.tags[] | select(. != "latest")' 2>/dev/null | head -1 || echo "")
|
||||||
|
else
|
||||||
|
# Docker Hub
|
||||||
|
version=$(curl -fsSL "https://hub.docker.com/v2/repositories/${source}/tags?page_size=10&ordering=last_updated" 2>/dev/null \
|
||||||
|
| jq -r '.results[] | select(.name != "latest") | .name' | head -1 || echo "")
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
pveam)
|
||||||
|
# Proxmox LXC template versions from download.proxmox.com
|
||||||
|
os_name="${source#pveam:}"
|
||||||
|
# Fetch the template index and get latest version
|
||||||
|
version=$(curl -fsSL "http://download.proxmox.com/images/system/" 2>/dev/null \
|
||||||
|
| grep -oE "${os_name}-[0-9]+\.[0-9]+-default_[0-9]+_amd64" \
|
||||||
|
| sed "s/${os_name}-//" | sed 's/-default.*//' \
|
||||||
|
| sort -V | tail -1 || echo "")
|
||||||
|
;;
|
||||||
|
|
||||||
|
manual)
|
||||||
|
# Manual entries - no automatic version fetching
|
||||||
|
# These need to be updated manually or have their source type changed
|
||||||
|
version="-"
|
||||||
|
((manual++))
|
||||||
|
echo -n "(manual) "
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [[ -n "$version" && "$version" != "null" ]]; then
|
||||||
|
# Update the source entry with version
|
||||||
|
jq --arg idx "$i" --arg version "$version" --arg date "${date:-}" \
|
||||||
|
'.sources[$idx | tonumber].version = $version | .sources[$idx | tonumber].date = $date' \
|
||||||
|
"$SOURCES_FILE" > "${SOURCES_FILE}.tmp" && mv "${SOURCES_FILE}.tmp" "$SOURCES_FILE"
|
||||||
|
echo "✓ $version"
|
||||||
|
((success++))
|
||||||
|
else
|
||||||
|
echo "⚠ no version found"
|
||||||
|
((failed++))
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "========================================="
|
||||||
|
echo " SUMMARY"
|
||||||
|
echo "========================================="
|
||||||
|
echo "Success: $success (automated)"
|
||||||
|
echo "Manual: $manual (placeholder)"
|
||||||
|
echo "Failed: $failed"
|
||||||
|
echo "Total: $total"
|
||||||
|
echo "========================================="
|
||||||
|
|
||||||
|
- name: Generate versions.json for compatibility
|
||||||
|
run: |
|
||||||
|
# Convert version-sources.json to versions.json format for backward compatibility
|
||||||
|
jq '[.sources[] | select(.version != null) | {name: .source, version: .version, date: .date}]' \
|
||||||
|
"$SOURCES_FILE" > "$VERSIONS_FILE"
|
||||||
|
|
||||||
|
echo "Generated versions.json with $(jq length "$VERSIONS_FILE") entries"
|
||||||
|
|
||||||
|
- name: Check for changes
|
||||||
|
id: check-changes
|
||||||
|
run: |
|
||||||
|
if git diff --quiet "$SOURCES_FILE" "$VERSIONS_FILE" 2>/dev/null; then
|
||||||
|
echo "changed=false" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "No changes detected"
|
||||||
|
else
|
||||||
|
echo "changed=true" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "Changes detected:"
|
||||||
|
git diff --stat "$SOURCES_FILE" "$VERSIONS_FILE" 2>/dev/null || true
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Create Pull Request
|
||||||
|
if: steps.check-changes.outputs.changed == 'true'
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ steps.generate-token.outputs.token }}
|
||||||
|
run: |
|
||||||
|
BRANCH_NAME="automated/update-versions-$(date +%Y%m%d)"
|
||||||
|
|
||||||
|
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
||||||
|
git config --global user.name "GitHub Actions[bot]"
|
||||||
|
|
||||||
|
# Check if branch exists and delete it
|
||||||
|
git push origin --delete "$BRANCH_NAME" 2>/dev/null || true
|
||||||
|
|
||||||
|
git checkout -b "$BRANCH_NAME"
|
||||||
|
git add "$SOURCES_FILE" "$VERSIONS_FILE"
|
||||||
|
git commit -m "chore: update version-sources.json and versions.json
|
||||||
|
|
||||||
|
Sources: $(jq '.sources | length' "$SOURCES_FILE")
|
||||||
|
With versions: $(jq '[.sources[] | select(.version != null)] | length' "$SOURCES_FILE")
|
||||||
|
Generated: $(jq -r '.generated' "$SOURCES_FILE")"
|
||||||
|
|
||||||
|
git push origin "$BRANCH_NAME" --force
|
||||||
|
|
||||||
|
# Check if PR already exists
|
||||||
|
existing_pr=$(gh pr list --head "$BRANCH_NAME" --state open --json number --jq '.[0].number // empty')
|
||||||
|
|
||||||
|
if [[ -n "$existing_pr" ]]; then
|
||||||
|
echo "PR #$existing_pr already exists, updating..."
|
||||||
|
else
|
||||||
|
gh pr create \
|
||||||
|
--title "[Automated] Update version-sources.json" \
|
||||||
|
--body "This PR updates version information from multiple sources.
|
||||||
|
|
||||||
|
## Sources
|
||||||
|
- **GitHub Releases**: Direct from \`fetch_and_deploy_gh_release\` calls
|
||||||
|
- **GitHub URLs**: Extracted from install scripts
|
||||||
|
- **npm Registry**: For Node.js based apps
|
||||||
|
- **Docker Hub/GHCR**: For container-based apps
|
||||||
|
|
||||||
|
## Stats
|
||||||
|
- Total sources: $(jq '.sources | length' "$SOURCES_FILE")
|
||||||
|
- With versions: $(jq '[.sources[] | select(.version != null)] | length' "$SOURCES_FILE")
|
||||||
|
|
||||||
|
---
|
||||||
|
*Automatically generated from install scripts*" \
|
||||||
|
--base main \
|
||||||
|
--head "$BRANCH_NAME" \
|
||||||
|
--label "automated pr"
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Auto-approve PR
|
||||||
|
if: steps.check-changes.outputs.changed == 'true'
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
run: |
|
||||||
|
BRANCH_NAME="automated/update-versions-$(date +%Y%m%d)"
|
||||||
|
pr_number=$(gh pr list --head "$BRANCH_NAME" --state open --json number --jq '.[0].number')
|
||||||
|
if [[ -n "$pr_number" ]]; then
|
||||||
|
gh pr review "$pr_number" --approve
|
||||||
|
fi
|
||||||
@ -10,6 +10,8 @@
|
|||||||
> [!CAUTION]
|
> [!CAUTION]
|
||||||
Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit the project's popularity for potentially malicious purposes.
|
Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit the project's popularity for potentially malicious purposes.
|
||||||
|
|
||||||
|
## 2025-12-16
|
||||||
|
|
||||||
## 2025-12-15
|
## 2025-12-15
|
||||||
|
|
||||||
### 🆕 New Scripts
|
### 🆕 New Scripts
|
||||||
@ -20,6 +22,8 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
|
|||||||
|
|
||||||
- #### 🐞 Bug Fixes
|
- #### 🐞 Bug Fixes
|
||||||
|
|
||||||
|
- Fix DiscoPanel build [@PouletteMC](https://github.com/PouletteMC) ([#10009](https://github.com/community-scripts/ProxmoxVE/pull/10009))
|
||||||
|
- fix:ct/openwebui.sh adding progressbar and minimize service downtime [@jobben-2025](https://github.com/jobben-2025) ([#9894](https://github.com/community-scripts/ProxmoxVE/pull/9894))
|
||||||
- homarr: add: temp note aboute deb13 requirement [@CrazyWolf13](https://github.com/CrazyWolf13) ([#9992](https://github.com/community-scripts/ProxmoxVE/pull/9992))
|
- homarr: add: temp note aboute deb13 requirement [@CrazyWolf13](https://github.com/CrazyWolf13) ([#9992](https://github.com/community-scripts/ProxmoxVE/pull/9992))
|
||||||
- paperless-ai: backup data and recreate venv during update [@MickLesk](https://github.com/MickLesk) ([#9987](https://github.com/community-scripts/ProxmoxVE/pull/9987))
|
- paperless-ai: backup data and recreate venv during update [@MickLesk](https://github.com/MickLesk) ([#9987](https://github.com/community-scripts/ProxmoxVE/pull/9987))
|
||||||
- fix(booklore): add setup_yq to update script [@MickLesk](https://github.com/MickLesk) ([#9989](https://github.com/community-scripts/ProxmoxVE/pull/9989))
|
- fix(booklore): add setup_yq to update script [@MickLesk](https://github.com/MickLesk) ([#9989](https://github.com/community-scripts/ProxmoxVE/pull/9989))
|
||||||
|
|||||||
@ -49,6 +49,8 @@ function update_script() {
|
|||||||
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "discopanel" "nickheyer/discopanel" "tarball" "latest" "/opt/discopanel"
|
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "discopanel" "nickheyer/discopanel" "tarball" "latest" "/opt/discopanel"
|
||||||
|
|
||||||
msg_info "Setting up DiscoPanel"
|
msg_info "Setting up DiscoPanel"
|
||||||
|
cd /opt/discopanel
|
||||||
|
$STD make gen
|
||||||
cd /opt/discopanel/web/discopanel
|
cd /opt/discopanel/web/discopanel
|
||||||
$STD npm install
|
$STD npm install
|
||||||
$STD npm run build
|
$STD npm run build
|
||||||
|
|||||||
17
ct/homarr.sh
17
ct/homarr.sh
@ -35,11 +35,22 @@ function update_script() {
|
|||||||
msg_ok "Services Stopped"
|
msg_ok "Services Stopped"
|
||||||
|
|
||||||
if ! { grep -q '^REDIS_IS_EXTERNAL=' /opt/homarr/.env 2>/dev/null || grep -q '^REDIS_IS_EXTERNAL=' /opt/homarr.env 2>/dev/null; }; then
|
if ! { grep -q '^REDIS_IS_EXTERNAL=' /opt/homarr/.env 2>/dev/null || grep -q '^REDIS_IS_EXTERNAL=' /opt/homarr.env 2>/dev/null; }; then
|
||||||
|
DEBIAN_VERSION=$(cat /etc/debian_version 2>/dev/null | cut -d'.' -f1)
|
||||||
|
if [[ -n "$DEBIAN_VERSION" ]] && [[ "$DEBIAN_VERSION" -lt 13 ]]; then
|
||||||
|
msg_warn "⚠️ COMPATIBILITY WARNING ⚠️"
|
||||||
|
msg_warn "You are running Debian ${DEBIAN_VERSION}. Homarr's requires Debian 13"
|
||||||
|
msg_warn ""
|
||||||
|
msg_warn "Please Upgrade to Debian 13:"
|
||||||
|
msg_warn "See: https://github.com/community-scripts/ProxmoxVE/discussions/7489"
|
||||||
|
msg_warn ""
|
||||||
|
exit
|
||||||
|
fi
|
||||||
msg_info "Fixing old structure"
|
msg_info "Fixing old structure"
|
||||||
systemctl disable -q --now nginx
|
# fix musl issues because homarr compiles on alpine not debian soure: https://github.com/alexander-akhmetov/python-telegram/issues/3
|
||||||
|
$STD apt install -y musl-dev
|
||||||
|
ln -s /usr/lib/x86_64-linux-musl/libc.so /lib/libc.musl-x86_64.so.1
|
||||||
cp /opt/homarr/.env /opt/homarr.env
|
cp /opt/homarr/.env /opt/homarr.env
|
||||||
echo "REDIS_IS_EXTERNAL='true'" >> /opt/homarr.env
|
echo "REDIS_IS_EXTERNAL='true'" >> /opt/homarr.env
|
||||||
sed -i '/^\[Unit\]/a Requires=redis-server.service\nAfter=redis-server.service' /etc/systemd/system/homarr.service
|
|
||||||
sed -i 's|^ExecStart=.*|ExecStart=/opt/homarr/run.sh|' /etc/systemd/system/homarr.service
|
sed -i 's|^ExecStart=.*|ExecStart=/opt/homarr/run.sh|' /etc/systemd/system/homarr.service
|
||||||
sed -i 's|^EnvironmentFile=.*|EnvironmentFile=-/opt/homarr.env|' /etc/systemd/system/homarr.service
|
sed -i 's|^EnvironmentFile=.*|EnvironmentFile=-/opt/homarr.env|' /etc/systemd/system/homarr.service
|
||||||
chown -R redis:redis /appdata/redis
|
chown -R redis:redis /appdata/redis
|
||||||
@ -61,7 +72,7 @@ EOF
|
|||||||
|
|
||||||
NODE_VERSION=$(curl -s https://raw.githubusercontent.com/homarr-labs/homarr/dev/package.json | jq -r '.engines.node | split(">=")[1] | split(".")[0]')
|
NODE_VERSION=$(curl -s https://raw.githubusercontent.com/homarr-labs/homarr/dev/package.json | jq -r '.engines.node | split(">=")[1] | split(".")[0]')
|
||||||
setup_nodejs
|
setup_nodejs
|
||||||
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "homarr" "homarr-labs/homarr" "prebuild" "latest" "/opt/homarr" "build-debian-amd64.tar.gz"
|
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "homarr" "homarr-labs/homarr" "prebuild" "latest" "/opt/homarr" "build-amd64.tar.gz"
|
||||||
|
|
||||||
msg_info "Updating Homarr"
|
msg_info "Updating Homarr"
|
||||||
cp /opt/homarr/redis.conf /etc/redis/redis.conf
|
cp /opt/homarr/redis.conf /etc/redis/redis.conf
|
||||||
|
|||||||
@ -88,22 +88,36 @@ EOF
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -x "/usr/bin/ollama" ]; then
|
if [ -x "/usr/bin/ollama" ]; then
|
||||||
msg_info "Updating Ollama"
|
msg_info "Checking for Ollama Update"
|
||||||
OLLAMA_VERSION=$(ollama -v | awk '{print $NF}')
|
OLLAMA_VERSION=$(ollama -v | awk '{print $NF}')
|
||||||
RELEASE=$(curl -s https://api.github.com/repos/ollama/ollama/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4)}')
|
RELEASE=$(curl -s https://api.github.com/repos/ollama/ollama/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4)}')
|
||||||
if [ "$OLLAMA_VERSION" != "$RELEASE" ]; then
|
if [ "$OLLAMA_VERSION" != "$RELEASE" ]; then
|
||||||
msg_info "Stopping Service"
|
msg_info "Ollama update available: v$OLLAMA_VERSION -> v$RELEASE"
|
||||||
|
msg_info "Downloading Ollama v$RELEASE \n"
|
||||||
|
curl -fS#LO https://ollama.com/download/ollama-linux-amd64.tgz
|
||||||
|
msg_ok "Download Complete"
|
||||||
|
|
||||||
|
if [ -f "ollama-linux-amd64.tgz" ]; then
|
||||||
|
|
||||||
|
msg_info "Stopping Ollama Service"
|
||||||
systemctl stop ollama
|
systemctl stop ollama
|
||||||
msg_ok "Stopped Service"
|
msg_ok "Stopped Service"
|
||||||
curl -fsSLO -C - https://ollama.com/download/ollama-linux-amd64.tgz
|
|
||||||
|
msg_info "Installing Ollama"
|
||||||
rm -rf /usr/lib/ollama
|
rm -rf /usr/lib/ollama
|
||||||
rm -rf /usr/bin/ollama
|
rm -rf /usr/bin/ollama
|
||||||
tar -C /usr -xzf ollama-linux-amd64.tgz
|
tar -C /usr -xzf ollama-linux-amd64.tgz
|
||||||
rm -rf ollama-linux-amd64.tgz
|
rm -rf ollama-linux-amd64.tgz
|
||||||
msg_info "Starting Service"
|
msg_ok "Installed Ollama"
|
||||||
|
|
||||||
|
msg_info "Starting Ollama Service"
|
||||||
systemctl start ollama
|
systemctl start ollama
|
||||||
msg_info "Started Service"
|
msg_ok "Started Service"
|
||||||
|
|
||||||
msg_ok "Ollama updated to version $RELEASE"
|
msg_ok "Ollama updated to version $RELEASE"
|
||||||
|
else
|
||||||
|
msg_error "Ollama download failed. Aborting update."
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
msg_ok "Ollama is already up to date."
|
msg_ok "Ollama is already up to date."
|
||||||
fi
|
fi
|
||||||
|
|||||||
@ -1,4 +1,99 @@
|
|||||||
[
|
[
|
||||||
|
{
|
||||||
|
"name": "scanopy/scanopy",
|
||||||
|
"version": "v0.12.1",
|
||||||
|
"date": "2025-12-15T22:21:36Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "semaphoreui/semaphore",
|
||||||
|
"version": "v2.16.46",
|
||||||
|
"date": "2025-12-15T22:07:08Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "mattermost/mattermost",
|
||||||
|
"version": "mattermost-redux@11.2.0",
|
||||||
|
"date": "2025-12-15T20:37:15Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "metabase/metabase",
|
||||||
|
"version": "v0.57.x",
|
||||||
|
"date": "2025-12-15T20:02:49Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "azukaar/Cosmos-Server",
|
||||||
|
"version": "v0.19.0",
|
||||||
|
"date": "2025-12-15T19:43:03Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "livebook-dev/livebook",
|
||||||
|
"version": "v0.18.2",
|
||||||
|
"date": "2025-12-15T19:17:42Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "opencloud-eu/opencloud",
|
||||||
|
"version": "v4.1.0",
|
||||||
|
"date": "2025-12-15T18:53:25Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "rabbitmq/rabbitmq-server",
|
||||||
|
"version": "v4.2.2",
|
||||||
|
"date": "2025-12-15T18:25:36Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "MediaBrowser/Emby.Releases",
|
||||||
|
"version": "4.9.1.90",
|
||||||
|
"date": "2025-11-11T01:00:32Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "prometheus/alertmanager",
|
||||||
|
"version": "v0.30.0",
|
||||||
|
"date": "2025-12-15T17:23:59Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "n8n-io/n8n",
|
||||||
|
"version": "n8n@1.123.6",
|
||||||
|
"date": "2025-12-15T14:22:59Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "rcourtman/Pulse",
|
||||||
|
"version": "v4.36.2",
|
||||||
|
"date": "2025-12-03T22:46:29Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "danielbrendel/hortusfox-web",
|
||||||
|
"version": "v5.6",
|
||||||
|
"date": "2025-12-15T14:40:53Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "librenms/librenms",
|
||||||
|
"version": "25.12.0",
|
||||||
|
"date": "2025-12-15T14:06:00Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "firefly-iii/firefly-iii",
|
||||||
|
"version": "v6.4.11",
|
||||||
|
"date": "2025-12-15T08:01:35Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "tailscale/tailscale",
|
||||||
|
"version": "v1.92.2",
|
||||||
|
"date": "2025-12-10T21:20:31Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "meilisearch/meilisearch",
|
||||||
|
"version": "latest",
|
||||||
|
"date": "2025-12-15T13:03:38Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "endurain-project/endurain",
|
||||||
|
"version": "v0.16.3",
|
||||||
|
"date": "2025-12-15T12:56:50Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "LimeSurvey/LimeSurvey",
|
||||||
|
"version": "6.16.2+251209",
|
||||||
|
"date": "2025-12-15T12:05:26Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "cockpit-project/cockpit",
|
"name": "cockpit-project/cockpit",
|
||||||
"version": "353.1",
|
"version": "353.1",
|
||||||
@ -24,16 +119,6 @@
|
|||||||
"version": "v6.0.4.10291",
|
"version": "v6.0.4.10291",
|
||||||
"date": "2025-11-16T22:39:01Z"
|
"date": "2025-11-16T22:39:01Z"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "mattermost/mattermost",
|
|
||||||
"version": "v10.11.8",
|
|
||||||
"date": "2025-11-21T17:06:07Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "firefly-iii/firefly-iii",
|
|
||||||
"version": "v6.4.11",
|
|
||||||
"date": "2025-12-15T08:01:35Z"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "morpheus65535/bazarr",
|
"name": "morpheus65535/bazarr",
|
||||||
"version": "v1.5.3",
|
"version": "v1.5.3",
|
||||||
@ -44,11 +129,6 @@
|
|||||||
"version": "v0.24.454",
|
"version": "v0.24.454",
|
||||||
"date": "2025-12-15T05:54:27Z"
|
"date": "2025-12-15T05:54:27Z"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "scanopy/scanopy",
|
|
||||||
"version": "v0.12.0",
|
|
||||||
"date": "2025-12-15T04:12:10Z"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "jellyfin/jellyfin",
|
"name": "jellyfin/jellyfin",
|
||||||
"version": "v10.11.5",
|
"version": "v10.11.5",
|
||||||
@ -99,16 +179,6 @@
|
|||||||
"version": "5.1.0.M4",
|
"version": "5.1.0.M4",
|
||||||
"date": "2025-12-14T18:12:04Z"
|
"date": "2025-12-14T18:12:04Z"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "rcourtman/Pulse",
|
|
||||||
"version": "v4.36.2",
|
|
||||||
"date": "2025-12-03T22:46:29Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "semaphoreui/semaphore",
|
|
||||||
"version": "v2.17.0-beta24",
|
|
||||||
"date": "2025-12-14T14:04:23Z"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "blakeblackshear/frigate",
|
"name": "blakeblackshear/frigate",
|
||||||
"version": "v0.14.1",
|
"version": "v0.14.1",
|
||||||
@ -259,11 +329,6 @@
|
|||||||
"version": "v1.46.0",
|
"version": "v1.46.0",
|
||||||
"date": "2025-12-12T19:23:36Z"
|
"date": "2025-12-12T19:23:36Z"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "metabase/metabase",
|
|
||||||
"version": "v0.57.x",
|
|
||||||
"date": "2025-12-12T19:08:53Z"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "home-assistant/core",
|
"name": "home-assistant/core",
|
||||||
"version": "2025.12.3",
|
"version": "2025.12.3",
|
||||||
@ -294,11 +359,6 @@
|
|||||||
"version": "v0.30.0",
|
"version": "v0.30.0",
|
||||||
"date": "2025-12-12T14:03:52Z"
|
"date": "2025-12-12T14:03:52Z"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "n8n-io/n8n",
|
|
||||||
"version": "n8n@1.123.5-exp.0",
|
|
||||||
"date": "2025-12-10T16:35:50Z"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "zitadel/zitadel",
|
"name": "zitadel/zitadel",
|
||||||
"version": "v4.7.5",
|
"version": "v4.7.5",
|
||||||
@ -324,11 +384,6 @@
|
|||||||
"version": "3.4.3",
|
"version": "3.4.3",
|
||||||
"date": "2025-12-12T11:35:00Z"
|
"date": "2025-12-12T11:35:00Z"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "opencloud-eu/opencloud",
|
|
||||||
"version": "4.0.1-rc.1",
|
|
||||||
"date": "2025-12-12T10:52:28Z"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "grokability/snipe-it",
|
"name": "grokability/snipe-it",
|
||||||
"version": "v8.3.7",
|
"version": "v8.3.7",
|
||||||
@ -354,11 +409,6 @@
|
|||||||
"version": "0.43.1",
|
"version": "0.43.1",
|
||||||
"date": "2025-12-11T22:45:52Z"
|
"date": "2025-12-11T22:45:52Z"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "meilisearch/meilisearch",
|
|
||||||
"version": "prototype-v1.30.0-network-topology.3",
|
|
||||||
"date": "2025-12-11T21:57:10Z"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "coollabsio/coolify",
|
"name": "coollabsio/coolify",
|
||||||
"version": "v4.0.0-beta.454",
|
"version": "v4.0.0-beta.454",
|
||||||
@ -369,11 +419,6 @@
|
|||||||
"version": "v1.30.22",
|
"version": "v1.30.22",
|
||||||
"date": "2025-12-11T18:02:06Z"
|
"date": "2025-12-11T18:02:06Z"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "endurain-project/endurain",
|
|
||||||
"version": "v0.16.2",
|
|
||||||
"date": "2025-12-11T15:16:01Z"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Stirling-Tools/Stirling-PDF",
|
"name": "Stirling-Tools/Stirling-PDF",
|
||||||
"version": "v2.1.3",
|
"version": "v2.1.3",
|
||||||
@ -404,11 +449,6 @@
|
|||||||
"version": "v5.33.1",
|
"version": "v5.33.1",
|
||||||
"date": "2025-12-11T01:59:13Z"
|
"date": "2025-12-11T01:59:13Z"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "tailscale/tailscale",
|
|
||||||
"version": "v1.92.2",
|
|
||||||
"date": "2025-12-10T21:20:31Z"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "gethomepage/homepage",
|
"name": "gethomepage/homepage",
|
||||||
"version": "v1.8.0",
|
"version": "v1.8.0",
|
||||||
@ -419,11 +459,6 @@
|
|||||||
"version": "jenkins-2.541",
|
"version": "jenkins-2.541",
|
||||||
"date": "2025-12-10T15:57:13Z"
|
"date": "2025-12-10T15:57:13Z"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "prometheus/alertmanager",
|
|
||||||
"version": "v0.29.0",
|
|
||||||
"date": "2025-11-04T15:00:07Z"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "rclone/rclone",
|
"name": "rclone/rclone",
|
||||||
"version": "v1.72.1",
|
"version": "v1.72.1",
|
||||||
@ -474,11 +509,6 @@
|
|||||||
"version": "9.0.1",
|
"version": "9.0.1",
|
||||||
"date": "2025-12-09T18:13:25Z"
|
"date": "2025-12-09T18:13:25Z"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "MediaBrowser/Emby.Releases",
|
|
||||||
"version": "4.9.1.90",
|
|
||||||
"date": "2025-11-11T01:00:32Z"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Infisical/infisical",
|
"name": "Infisical/infisical",
|
||||||
"version": "v0.154.6",
|
"version": "v0.154.6",
|
||||||
@ -514,11 +544,6 @@
|
|||||||
"version": "16.3",
|
"version": "16.3",
|
||||||
"date": "2025-11-04T12:28:47Z"
|
"date": "2025-11-04T12:28:47Z"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "LimeSurvey/LimeSurvey",
|
|
||||||
"version": "6.16.1+251125",
|
|
||||||
"date": "2025-12-09T12:27:31Z"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Paymenter/Paymenter",
|
"name": "Paymenter/Paymenter",
|
||||||
"version": "v1.4.7",
|
"version": "v1.4.7",
|
||||||
@ -579,11 +604,6 @@
|
|||||||
"version": "v1.15.5",
|
"version": "v1.15.5",
|
||||||
"date": "2025-12-07T12:24:21Z"
|
"date": "2025-12-07T12:24:21Z"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "livebook-dev/livebook",
|
|
||||||
"version": "v0.18.1",
|
|
||||||
"date": "2025-12-07T11:35:51Z"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "sysadminsmedia/homebox",
|
"name": "sysadminsmedia/homebox",
|
||||||
"version": "v0.22.0-rc.2",
|
"version": "v0.22.0-rc.2",
|
||||||
@ -694,11 +714,6 @@
|
|||||||
"version": "11.0.4",
|
"version": "11.0.4",
|
||||||
"date": "2025-12-04T09:26:37Z"
|
"date": "2025-12-04T09:26:37Z"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "danielbrendel/hortusfox-web",
|
|
||||||
"version": "v5.5",
|
|
||||||
"date": "2025-12-03T21:20:30Z"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "actualbudget/actual",
|
"name": "actualbudget/actual",
|
||||||
"version": "v25.12.0",
|
"version": "v25.12.0",
|
||||||
@ -1074,16 +1089,6 @@
|
|||||||
"version": "v0.28.2",
|
"version": "v0.28.2",
|
||||||
"date": "2025-11-18T05:51:46Z"
|
"date": "2025-11-18T05:51:46Z"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "librenms/librenms",
|
|
||||||
"version": "25.11.0",
|
|
||||||
"date": "2025-11-17T13:29:57Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "rabbitmq/rabbitmq-server",
|
|
||||||
"version": "v4.2.1",
|
|
||||||
"date": "2025-11-17T02:47:15Z"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "binwiederhier/ntfy",
|
"name": "binwiederhier/ntfy",
|
||||||
"version": "v2.15.0",
|
"version": "v2.15.0",
|
||||||
@ -1179,11 +1184,6 @@
|
|||||||
"version": "0.5.1",
|
"version": "0.5.1",
|
||||||
"date": "2025-11-05T16:14:37Z"
|
"date": "2025-11-05T16:14:37Z"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "azukaar/Cosmos-Server",
|
|
||||||
"version": "v0.18.4",
|
|
||||||
"date": "2025-04-05T19:12:57Z"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "getumbrel/umbrel",
|
"name": "getumbrel/umbrel",
|
||||||
"version": "1.5.0",
|
"version": "1.5.0",
|
||||||
|
|||||||
@ -22,6 +22,8 @@ fetch_and_deploy_gh_release "discopanel" "nickheyer/discopanel" "tarball" "lates
|
|||||||
setup_docker
|
setup_docker
|
||||||
|
|
||||||
msg_info "Setting up DiscoPanel"
|
msg_info "Setting up DiscoPanel"
|
||||||
|
cd /opt/discopanel
|
||||||
|
$STD make gen
|
||||||
cd /opt/discopanel/web/discopanel
|
cd /opt/discopanel/web/discopanel
|
||||||
$STD npm install
|
$STD npm install
|
||||||
$STD npm run build
|
$STD npm run build
|
||||||
|
|||||||
@ -18,14 +18,17 @@ $STD apt install -y \
|
|||||||
redis-server \
|
redis-server \
|
||||||
nginx \
|
nginx \
|
||||||
gettext \
|
gettext \
|
||||||
openssl
|
openssl \
|
||||||
|
musl-dev
|
||||||
msg_ok "Installed Dependencies"
|
msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
NODE_VERSION=$(curl -s https://raw.githubusercontent.com/homarr-labs/homarr/dev/package.json | jq -r '.engines.node | split(">=")[1] | split(".")[0]')
|
NODE_VERSION=$(curl -s https://raw.githubusercontent.com/homarr-labs/homarr/dev/package.json | jq -r '.engines.node | split(">=")[1] | split(".")[0]')
|
||||||
setup_nodejs
|
setup_nodejs
|
||||||
fetch_and_deploy_gh_release "homarr" "homarr-labs/homarr" "prebuild" "latest" "/opt/homarr" "build-debian-amd64.tar.gz"
|
fetch_and_deploy_gh_release "homarr" "homarr-labs/homarr" "prebuild" "latest" "/opt/homarr" "build-amd64.tar.gz"
|
||||||
|
|
||||||
msg_info "Installing Homarr"
|
msg_info "Installing Homarr"
|
||||||
|
# fix musl issues because homarr compiles on alpine not debian soure: https://github.com/alexander-akhmetov/python-telegram/issues/3
|
||||||
|
ln -s /usr/lib/x86_64-linux-musl/libc.so /lib/libc.musl-x86_64.so.1
|
||||||
mkdir -p /opt/homarr_db
|
mkdir -p /opt/homarr_db
|
||||||
touch /opt/homarr_db/db.sqlite
|
touch /opt/homarr_db/db.sqlite
|
||||||
SECRET_ENCRYPTION_KEY="$(openssl rand -hex 32)"
|
SECRET_ENCRYPTION_KEY="$(openssl rand -hex 32)"
|
||||||
@ -62,8 +65,6 @@ ReadWritePaths=-/appdata/redis -/var/lib/redis -/var/log/redis -/var/run/redis -
|
|||||||
EOF
|
EOF
|
||||||
cat <<EOF >/etc/systemd/system/homarr.service
|
cat <<EOF >/etc/systemd/system/homarr.service
|
||||||
[Unit]
|
[Unit]
|
||||||
Requires=redis-server.service
|
|
||||||
After=redis-server.service
|
|
||||||
Description=Homarr Service
|
Description=Homarr Service
|
||||||
After=network.target
|
After=network.target
|
||||||
|
|
||||||
@ -78,9 +79,8 @@ WantedBy=multi-user.target
|
|||||||
EOF
|
EOF
|
||||||
chmod +x /opt/homarr/run.sh
|
chmod +x /opt/homarr/run.sh
|
||||||
systemctl daemon-reload
|
systemctl daemon-reload
|
||||||
systemctl enable -q --now redis-server
|
systemctl enable -q --now redis-server && sleep 5
|
||||||
systemctl enable -q --now homarr
|
systemctl enable -q --now homarr
|
||||||
systemctl disable -q --now nginx
|
|
||||||
msg_ok "Created Services"
|
msg_ok "Created Services"
|
||||||
|
|
||||||
motd_ssh
|
motd_ssh
|
||||||
|
|||||||
Reference in New Issue
Block a user