From 479f41281b71649802e160d2cd7058568f410540 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Slavi=C5=A1a=20Are=C5=BEina?= <58952836+tremor021@users.noreply.github.com> Date: Sat, 29 Nov 2025 10:52:05 +0100 Subject: [PATCH 1/4] Update install/discopanel-install.sh --- install/discopanel-install.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/install/discopanel-install.sh b/install/discopanel-install.sh index ce7afde7d..12af8ebdc 100644 --- a/install/discopanel-install.sh +++ b/install/discopanel-install.sh @@ -29,6 +29,7 @@ msg_ok "Installed Docker" fetch_and_deploy_gh_release "discopanel" "nickheyer/discopanel" "tarball" "latest" "/opt/discopanel" setup_nodejs +setup_go msg_info "Building DiscoPanel frontend" cd /opt/discopanel/web/discopanel @@ -36,8 +37,6 @@ $STD npm install $STD npm run build msg_ok "Built DiscoPanel frontend" -setup_go - msg_info "Building DiscoPanel backend" cd /opt/discopanel $STD go build -o discopanel cmd/discopanel/main.go From dbd00842033ba8f9f83f7e2176c6a54736627ca2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Slavi=C5=A1a=20Are=C5=BEina?= <58952836+tremor021@users.noreply.github.com> Date: Sat, 29 Nov 2025 10:56:02 +0100 Subject: [PATCH 2/4] Update install/discopanel-install.sh --- install/discopanel-install.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/install/discopanel-install.sh b/install/discopanel-install.sh index 12af8ebdc..45a9e6e99 100644 --- a/install/discopanel-install.sh +++ b/install/discopanel-install.sh @@ -27,7 +27,6 @@ $STD sh <(curl -fsSL https://get.docker.com) msg_ok "Installed Docker" fetch_and_deploy_gh_release "discopanel" "nickheyer/discopanel" "tarball" "latest" "/opt/discopanel" - setup_nodejs setup_go From 5b0afb72c0252c374ff1652bfe3d568396ca612d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Slavi=C5=A1a=20Are=C5=BEina?= <58952836+tremor021@users.noreply.github.com> Date: Sat, 29 Nov 2025 10:56:16 +0100 Subject: [PATCH 3/4] Update install/discopanel-install.sh --- install/discopanel-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/discopanel-install.sh b/install/discopanel-install.sh index 45a9e6e99..f90774876 100644 --- a/install/discopanel-install.sh +++ b/install/discopanel-install.sh @@ -26,7 +26,7 @@ echo -e '{\n "log-driver": "journald"\n}' >/etc/docker/daemon.json $STD sh <(curl -fsSL https://get.docker.com) msg_ok "Installed Docker" -fetch_and_deploy_gh_release "discopanel" "nickheyer/discopanel" "tarball" "latest" "/opt/discopanel" +fetch_and_deploy_gh_release "discopanel" "nickheyer/discopanel" "tarball" setup_nodejs setup_go From 6f805cf3d9438acb8e59aaf0396b824039180b6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Slavi=C5=A1a=20Are=C5=BEina?= <58952836+tremor021@users.noreply.github.com> Date: Sat, 29 Nov 2025 10:56:24 +0100 Subject: [PATCH 4/4] Update install/discopanel-install.sh --- install/discopanel-install.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/install/discopanel-install.sh b/install/discopanel-install.sh index f90774876..4ed239458 100644 --- a/install/discopanel-install.sh +++ b/install/discopanel-install.sh @@ -18,7 +18,6 @@ msg_info "Installing Dependencies" $STD apt install -y build-essential gcc msg_ok "Installed Dependencies" - msg_info "Installing Docker" DOCKER_CONFIG_PATH='/etc/docker/daemon.json' mkdir -p $(dirname $DOCKER_CONFIG_PATH)