GF_SERVER_DOMAIN expects a bare hostname (e.g. grafana.example.com) but was set to SERVICE_URL_GRAFANA which includes the protocol (https://grafana.example.com). This mismatch can cause Grafana to fail to load its application files when deployed behind Coolify's proxy. Changed to SERVICE_FQDN_GRAFANA which provides just the hostname. Applied the fix to both grafana.yaml and grafana-with-postgresql.yaml templates. Fixes #5307
22 lines
693 B
YAML
22 lines
693 B
YAML
# documentation: https://grafana.com
|
|
# slogan: Grafana is the open source analytics & monitoring solution for every database.
|
|
# category: monitoring
|
|
# tags: grafana,analytics,monitoring,dashboard
|
|
# logo: svgs/grafana.svg
|
|
# port: 3000
|
|
|
|
services:
|
|
grafana:
|
|
image: grafana/grafana-oss
|
|
environment:
|
|
- SERVICE_URL_GRAFANA_3000
|
|
- GF_SERVER_ROOT_URL=${SERVICE_URL_GRAFANA}
|
|
- GF_SERVER_DOMAIN=${SERVICE_FQDN_GRAFANA}
|
|
- GF_SECURITY_ADMIN_PASSWORD=${SERVICE_PASSWORD_GRAFANA}
|
|
volumes:
|
|
- grafana-data:/var/lib/grafana
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://127.0.0.1:3000/api/health"]
|
|
interval: 5s
|
|
timeout: 20s
|
|
retries: 10
|