Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/src/commit/189808f9bfb393db5e1ccb053a95705297551668/docker/entrypoint.sh You should set ROOT_URL correctly, otherwise the web may not work correctly.
ghostfolio/docker/entrypoint.sh

13 lines
167 B

#!/bin/sh
set -ex
echo "Running database migrations"
npx prisma migrate deploy
echo "Seeding the database"
npx prisma db seed
echo "Starting the server"
node main