From 84877c25d62e8d0bf8b3a94d04449f7b6aa10983 Mon Sep 17 00:00:00 2001
From: Sam Heinz <54530346+asylumexp@users.noreply.github.com>
Date: Mon, 8 Apr 2024 19:15:03 +1000
Subject: [PATCH] Ported Dockage to ARM64
---
README.md | 1 +
ct/dockge.sh | 2 +-
install/dockge-install.sh | 3 ++-
3 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 85d46d39a..1d7c24510 100644
--- a/README.md
+++ b/README.md
@@ -48,6 +48,7 @@ Any applications not in ported or unsupported need to be tested for whether they
deConz
Deluge
Docker
+ Dockage
Jellyseerr
Mafl
Nginx Proxy Manager
diff --git a/ct/dockge.sh b/ct/dockge.sh
index b1d943a41..2de514ba4 100644
--- a/ct/dockge.sh
+++ b/ct/dockge.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/dockge-install.sh b/install/dockge-install.sh
index 235ae6fdd..e4e077400 100644
--- a/install/dockge-install.sh
+++ b/install/dockge-install.sh
@@ -17,6 +17,7 @@ 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"
get_latest_release() {
@@ -36,7 +37,7 @@ msg_ok "Installed Docker $DOCKER_LATEST_VERSION"
msg_info "Installing Docker Compose $DOCKER_COMPOSE_LATEST_VERSION"
DOCKER_CONFIG=${DOCKER_CONFIG:-$HOME/.docker}
mkdir -p $DOCKER_CONFIG/cli-plugins
-curl -sSL https://github.com/docker/compose/releases/download/$DOCKER_COMPOSE_LATEST_VERSION/docker-compose-linux-x86_64 -o ~/.docker/cli-plugins/docker-compose
+curl -sSL https://github.com/docker/compose/releases/download/$DOCKER_COMPOSE_LATEST_VERSION/docker-compose-linux-aarch64 -o ~/.docker/cli-plugins/docker-compose
chmod +x $DOCKER_CONFIG/cli-plugins/docker-compose
msg_ok "Installed Docker Compose $DOCKER_COMPOSE_LATEST_VERSION"