Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/docker-sabnzbd-extended/src/commit/a7b33789a4b95bd87705cb7230567cac38e0ce48/root/etc/cont-init.d/31-path-setup.bash You should set ROOT_URL correctly, otherwise the web may not work correctly.
docker-sabnzbd-extended/root/etc/cont-init.d/31-path-setup.bash

34 lines
851 B

#!/usr/bin/with-contenv bash
# Create scripts directory
if [ ! -d "/config/scripts" ]; then
mkdir -p "/config/scripts"
chmod 0777 "/config/scripts"
fi
# Create configs directory
if [ ! -d "/config/scripts/configs" ]; then
mkdir -p "/config/scripts/configs"
chmod 0777 "/config/scripts/configs"
fi
# Create logs directory
if [ ! -d "/config/scripts/logs" ]; then
mkdir -p "/config/scripts/logs"
chmod 0777 "/config/scripts/logs"
fi
# Create downloads incomplete directory
if [ ! -d "/stroage/downloads/sabnzbd/incomplete" ]; then
mkdir -p "/stroage/downloads/sabnzbd/incomplete"
chmod 0777 "/stroage/downloads/sabnzbd/incomplete"
fi
# Create downloads complete directory
if [ ! -d "/stroage//downloads/sabnzbd/complete" ]; then
mkdir -p "/stroage//downloads/sabnzbd/complete"
chmod 0777 "/stroage//downloads/sabnzbd/complete"
fi
exit 0