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/3d8fdc2cf5abc835d50060007dc3eff1765386db/root/etc/cont-init.d/30-script-update.bash You should set ROOT_URL correctly, otherwise the web may not work correctly.
docker-sabnzbd-extended/root/etc/cont-init.d/30-script-update.bash

11 lines
245 B

#!/usr/bin/with-contenv bash
# update from git
if [[ "${UPDATE}" == "true" ]]; then
git -C ${SABSCRIPTS_PATH} reset --hard HEAD && \
git -C ${SABSCRIPTS_PATH} pull origin master && \
git -C ${SMA_PATH} pull origin master
fi
exit 0