Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/blame/commit/dcfd5648547af84a7ff4d84a8fa6086d1b7a4c5f/Dockerfile You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/Dockerfile

18 lines
519 B

FROM lsiobase/alpine.python:3.7
# set python to use utf-8 rather than ascii.
ENV PYTHONIOENCODING="UTF-8"
VOLUME /tv
8 years ago
RUN apk add --update git py-pip jpeg-dev && \
apk add --update --virtual build-dependencies build-base python-dev libffi-dev zlib-dev && \
git clone -b master --single-branch https://github.com/morpheus65535/bazarr.git /bazarr && \
pip install -r /bazarr/requirements.txt && \
apk del --purge build-dependencies
7 years ago
VOLUME /bazarr/data
7 years ago
EXPOSE 6767
CMD ["python", "/bazarr/bazarr.py"]