Ported Gotify to ARM64

This commit is contained in:
Sam Heinz
2024-04-09 23:01:34 +10:00
parent c094564be3
commit 5d3b43e4d0
3 changed files with 8 additions and 6 deletions

View File

@@ -67,6 +67,7 @@ Any applications not in ported or unsupported need to be tested for whether they
<li>⭕ Frigate</li>
<li>⭕ Go2RTC</li>
<li>⭕ Gokapi</li>
<li>⭕ Gotify</li>
<li>⭕ Jellyseerr</li>
<li>⭕ Mafl</li>
<li>⭕ Nginx Proxy Manager</li>

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env bash
source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func)
source <(curl -s https://raw.githubusercontent.com/asylumexp/Proxmox/main/misc/build.func)
# Copyright (c) 2021-2024 tteck
# Author: tteck (tteckster)
# License: MIT

View File

@@ -17,16 +17,17 @@ msg_info "Installing Dependencies"
$STD apt-get install -y curl
$STD apt-get install -y sudo
$STD apt-get install -y mc
$STD apt-get install -y wget
msg_ok "Installed Dependencies"
msg_info "Installing Gotify"
RELEASE=$(curl -s https://api.github.com/repos/gotify/server/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
mkdir -p /opt/gotify
cd /opt/gotify
wget -q https://github.com/gotify/server/releases/download/v${RELEASE}/gotify-linux-amd64.zip
$STD unzip gotify-linux-amd64.zip
rm -rf gotify-linux-amd64.zip
chmod +x gotify-linux-amd64
wget -q https://github.com/gotify/server/releases/download/v${RELEASE}/gotify-linux-arm64.zip
$STD unzip gotify-linux-arm64.zip
rm -rf gotify-linux-arm64.zip
chmod +x gotify-linux-arm64
cat <<EOF >/etc/systemd/system/gotify.service
[Unit]
@@ -38,7 +39,7 @@ After=network.target
Type=simple
User=root
WorkingDirectory=/opt/gotify
ExecStart=/opt/gotify/./gotify-linux-amd64
ExecStart=/opt/gotify/./gotify-linux-arm64
Restart=always
RestartSec=3