coolify/templates/compose/grafana-with-postgresql.yaml

43 lines
1.3 KiB
YAML
Raw Normal View History

2024-02-20 17:08:16 +01:00
# documentation: https://grafana.com
2023-10-25 20:13:45 +02:00
# slogan: Grafana is the open source analytics & monitoring solution for every database.
# tags: grafana,analytics,monitoring,dashboard
2024-02-20 15:07:12 +01:00
# logo: svgs/grafana.svg
# port: 3000
2023-10-25 20:13:45 +02:00
services:
grafana:
image: grafana/grafana-oss
environment:
- SERVICE_FQDN_GRAFANA_3000
2023-10-25 20:13:45 +02:00
- GF_SERVER_ROOT_URL=${SERVICE_FQDN_GRAFANA}
- GF_SERVER_DOMAIN=${SERVICE_FQDN_GRAFANA}
- GF_SECURITY_ADMIN_PASSWORD=${SERVICE_PASSWORD_GRAFANA}
- GF_DATABASE_TYPE=postgres
- GF_DATABASE_HOST=postgresql
- GF_DATABASE_USER=$SERVICE_USER_POSTGRES
- GF_DATABASE_PASSWORD=$SERVICE_PASSWORD_POSTGRES
- GF_DATABASE_NAME=${POSTGRES_DB:-grafana}
volumes:
- grafana-data:/var/lib/grafana
healthcheck:
2024-05-17 10:11:55 +02:00
test: ["CMD", "curl", "-f", "http://127.0.0.1:3000/api/health"]
2023-10-25 20:13:45 +02:00
interval: 5s
2023-10-26 10:02:51 +02:00
timeout: 20s
2023-10-25 20:13:45 +02:00
retries: 10
depends_on:
- postgresql
postgresql:
image: postgres:16-alpine
2023-10-25 20:13:45 +02:00
volumes:
- postgresql-data:/var/lib/postgresql/data
environment:
- POSTGRES_USER=$SERVICE_USER_POSTGRES
- POSTGRES_PASSWORD=$SERVICE_PASSWORD_POSTGRES
- POSTGRES_DB=${POSTGRES_DB:-grafana}
healthcheck:
test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"]
interval: 5s
2023-10-26 10:02:51 +02:00
timeout: 20s
2023-10-25 20:13:45 +02:00
retries: 10