From c272d3aa86e00cb7d22029fbd3ee1327bba52adb Mon Sep 17 00:00:00 2001 From: beaver-coder Date: Wed, 7 Aug 2024 19:12:31 -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. --- sonarr/setup.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonarr/setup.bash b/sonarr/setup.bash index 9c0f365..078a7f1 100644 --- a/sonarr/setup.bash +++ b/sonarr/setup.bash @@ -40,7 +40,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..."