Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/blame/commit/ee6b723ba5bff3052c209f0d207ec9504750b7c6/docker/docker-compose.dev.yml You should set ROOT_URL correctly, otherwise the web may not work correctly.
ghostfolio/docker/docker-compose.dev.yml

26 lines
553 B

name: ghostfolio_dev
services:
postgres:
image: docker.io/library/postgres:15
container_name: gf-postgres-dev
restart: unless-stopped
env_file:
- ../.env
3 years ago
ports:
- ${POSTGRES_PORT:-5432}:5432
volumes:
- postgres:/var/lib/postgresql/data
redis:
image: docker.io/library/redis:alpine
container_name: gf-redis-dev
restart: unless-stopped
env_file:
- ../.env
command: ['redis-server', '--requirepass', $REDIS_PASSWORD]
ports:
- ${REDIS_PORT:-6379}:6379
volumes:
postgres: