From 952d631443639a0bc0de02bb240b104f88c78a68 Mon Sep 17 00:00:00 2001 From: beaver-coder Date: Wed, 7 Aug 2024 19:16:01 -0600 Subject: [PATCH] Update setup.bash with dotnet8-runtime Recyclarr would not download/run with dotnet7, if you follow the alpine linux url, you will find that dotnet7-runtime does not exist. When I forked this and modified it to dotnet8, it worked on the first try. This needs to be fixed in sonarr and radarr. --- radarr/setup.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radarr/setup.bash b/radarr/setup.bash index 90b902d..9aafe00 100644 --- a/radarr/setup.bash +++ b/radarr/setup.bash @@ -41,7 +41,7 @@ mkdir -p /recyclarr && \ wget "https://github.com/recyclarr/recyclarr/releases/latest/download/recyclarr-linux-musl-x64.tar.xz" -O "/recyclarr/recyclarr.tar.xz" && \ tar -xf /recyclarr/recyclarr.tar.xz -C /recyclarr &>/dev/null && \ chmod 777 /recyclarr/recyclarr -apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/community dotnet7-runtime +apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/community dotnet8-runtime mkdir -p /custom-services.d echo "Download QueueCleaner service..."