diff --git a/README.md b/README.md
index 66ce67d2a..e8d624fcb 100644
--- a/README.md
+++ b/README.md
@@ -67,6 +67,7 @@ Any applications not in ported or unsupported need to be tested for whether they
⭕ Frigate
⭕ Go2RTC
⭕ Gokapi
+ ⭕ Gotify
⭕ Jellyseerr
⭕ Mafl
⭕ Nginx Proxy Manager
diff --git a/ct/gotify.sh b/ct/gotify.sh
index 15f911df0..0c4c6d3c2 100644
--- a/ct/gotify.sh
+++ b/ct/gotify.sh
@@ -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
diff --git a/install/gotify-install.sh b/install/gotify-install.sh
index dfdd110b7..c915c6c09 100644
--- a/install/gotify-install.sh
+++ b/install/gotify-install.sh
@@ -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 </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