Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/recyclarr/blame/commit/a7020823b3afb3332daf3d79462319357d78abbc/docker/scripts/prod/entrypoint.sh You should set ROOT_URL correctly, otherwise the web may not work correctly.
recyclarr/docker/scripts/prod/entrypoint.sh

18 lines
464 B

#!/usr/bin/env bash
set -e
config=/config/recyclarr.yml
if [[ "$RECYCLARR_CREATE_CONFIG" = true && ! -f "$config" ]]; then
echo "Creating default recyclarr.yml file..."
recyclarr config create
fi
# If the script has any arguments, invoke the CLI instead
if [ "$#" -gt 0 ]; then
recyclarr "$@"
else
echo "Starting cron schedule using: $CRON_SCHEDULE"
echo "$CRON_SCHEDULE /cron.sh" > /tmp/crontab
supercronic -passthrough-logs /tmp/crontab
fi