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.
This commit is contained in:
beaver-coder 2024-08-07 19:12:31 -06:00 committed by GitHub
parent e81fd95708
commit c272d3aa86
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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" 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 tar -xf /recyclarr/recyclarr.tar.xz -C /recyclarr &>/dev/null
chmod 777 /recyclarr/recyclarr 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 mkdir -p /custom-services.d
echo "Download QueueCleaner service..." echo "Download QueueCleaner service..."