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/633c65e33c9cf6822ae0a7074dc607c798e24dbf/docker/docker-compose.dev.yml You should set ROOT_URL correctly, otherwise the web may not work correctly.
ghostfolio/docker/docker-compose.dev.yml

25 lines
496 B

version: '3.9'
services:
postgres:
image: postgres:15
container_name: postgres
restart: unless-stopped
env_file:
- ../.env
ports:
- ${POSTGRES_PORT:-5432}:5432
volumes:
- postgres:/var/lib/postgresql/data
redis:
image: redis:alpine
container_name: redis
restart: unless-stopped
env_file:
- ../.env
command: ['redis-server', '--requirepass', $REDIS_PASSWORD]
ports:
- ${REDIS_PORT:-6379}:6379
volumes:
postgres: