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

10 lines
93 B

FROM node:12.18-alpine
COPY . /app
WORKDIR /app
RUN yarn && \
yarn build
CMD yarn start