Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/recyclarr/src/commit/d6783093ce4c62a971e4a631a48698d283dc31a4/docker/Recyclarr.ps1 You should set ROOT_URL correctly, otherwise the web may not work correctly.
recyclarr/docker/Recyclarr.ps1

12 lines
323 B

$ErrorActionPreference = "Stop"
$recyclarrYaml = "$PSScriptRoot/../docker-compose.yml"
# Start the corresponding radarr/sonarr docker containers for testing/debugging
& $PSScriptRoot/Debug.ps1
docker compose -f $recyclarrYaml run --rm --build app @args
if ($LASTEXITCODE -ne 0) {
throw "docker compose run failed"
}