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

23 lines
372 B

version: '3.7'
services:
postgres:
image: postgres:12
container_name: postgres
restart: unless-stopped
env_file:
- ../.env
ports:
- 5432:5432
volumes:
- postgres:/var/lib/postgresql/data
redis:
image: 'redis:alpine'
container_name: redis
restart: unless-stopped
ports:
- 6379:6379
volumes:
postgres: