Nabarun
08c72a51fe
All checks were successful
Lint Checks / Run linter (pull_request) Successful in 43s
Webapp Test / Run webapp test suite (pull_request) Successful in 4m59s
Deploy Test / Run deploy test suite (pull_request) Successful in 5m57s
K8s Deploy Test / Run deploy test suite on kind/k8s (pull_request) Successful in 10m10s
Smoke Test / Run basic test suite (pull_request) Successful in 5m19s
32 lines
907 B
YAML
32 lines
907 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
grafana:
|
|
image: grafana/grafana:10.2.3
|
|
restart: always
|
|
environment:
|
|
GF_SERVER_ROOT_URL: ${GF_SERVER_ROOT_URL}
|
|
CERC_GRAFANA_ALERTS_SUBGRAPH_IDS: ${CERC_GRAFANA_ALERTS_SUBGRAPH_IDS}
|
|
volumes:
|
|
- ../config/monitoring/grafana/provisioning:/etc/grafana/provisioning
|
|
- ../config/monitoring/grafana/dashboards:/etc/grafana/dashboards
|
|
- ../config/monitoring/update-grafana-alerts-config.sh:/update-grafana-alerts-config.sh
|
|
- grafana_storage:/var/lib/grafana
|
|
user: root
|
|
entrypoint: ["bash", "-c"]
|
|
command: |
|
|
"/update-grafana-alerts-config.sh && /run.sh"
|
|
ports:
|
|
- "3000"
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
healthcheck:
|
|
test: ["CMD", "nc", "-vz", "localhost", "3000"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 10
|
|
start_period: 3s
|
|
|
|
volumes:
|
|
grafana_storage:
|