22 lines
672 B
YAML
22 lines
672 B
YAML
# documentation: https://grafana.com
|
|
# slogan: Grafana is the open source analytics & monitoring solution for every database.
|
|
# tags: grafana,analytics,monitoring,dashboard
|
|
# logo: svgs/grafana.svg
|
|
# port: 3000
|
|
|
|
services:
|
|
grafana:
|
|
image: grafana/grafana-oss
|
|
environment:
|
|
- SERVICE_FQDN_GRAFANA_3000
|
|
- 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
|
|
timeout: 20s
|
|
retries: 10
|