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/7242a23e30f0c2c5aaaf31c50b6fe46f6eb6020c/docker/Debug.ps1 You should set ROOT_URL correctly, otherwise the web may not work correctly.
recyclarr/docker/Debug.ps1

10 lines
295 B

$ErrorActionPreference = "Stop"
$debuggingYaml = "$PSScriptRoot/debugging/docker-compose.yml"
# Start the corresponding radarr/sonarr docker containers for testing/debugging
docker compose -f $debuggingYaml up -d --pull always
if ($LASTEXITCODE -ne 0) {
throw "docker compose up failed"
}