lasthourcloud/templates/compose/grafana.yaml

21 lines
695 B
YAML
Raw Normal View History

2023-10-25 18:13:45 +00:00
# documentation: https://grafana.com/docs/grafana/latest/installation/docker/
# slogan: Grafana is the open source analytics & monitoring solution for every database.
# tags: grafana,analytics,monitoring,dashboard
2024-02-20 14:07:12 +00:00
# logo: svgs/grafana.svg
2023-10-25 18:13:45 +00:00
services:
grafana:
image: grafana/grafana-oss
environment:
- SERVICE_FQDN_GRAFANA
- GF_SERVER_ROOT_URL=${SERVICE_FQDN_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://localhost:3000/api/health"]
interval: 5s
2023-10-26 08:02:51 +00:00
timeout: 20s
2023-10-25 18:13:45 +00:00
retries: 10