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/92a220644ac0d48ae5e243250d7936541d49dd66/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