mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-03-21 15:45:01 +00:00

* use signed datasource * bump Grafana because on v10 pre-installing+provisioning didn't work * consistently rename provisioning folder ### Describe Your Changes Please provide a brief description of the changes you made. Be as specific as possible to help others understand the purpose and impact of your modifications. ### Checklist The following checks are **mandatory**: - [ ] My change adheres [VictoriaMetrics contributing guidelines](https://docs.victoriametrics.com/contributing/). Signed-off-by: hagen1778 <roman@victoriametrics.com>
19 lines
844 B
YAML
19 lines
844 B
YAML
services:
|
|
grafana:
|
|
container_name: grafana
|
|
image: grafana/grafana:11.5.0
|
|
depends_on:
|
|
- "vmauth"
|
|
ports:
|
|
- 3000:3000
|
|
volumes:
|
|
- grafanadata:/var/lib/grafana
|
|
- ./provisioning/datasources/victoriametrics-metrics-datasource/cluster.yml:/etc/grafana/provisioning/datasources/cluster.yml
|
|
- ./provisioning/dashboards:/etc/grafana/provisioning/dashboards
|
|
- ./../../dashboards/vm/victoriametrics-cluster.json:/var/lib/grafana/dashboards/vm.json
|
|
- ./../../dashboards/vm/vmagent.json:/var/lib/grafana/dashboards/vmagent.json
|
|
- ./../../dashboards/vm/vmalert.json:/var/lib/grafana/dashboards/vmalert.json
|
|
- ./../../dashboards/vm/vmauth.json:/var/lib/grafana/dashboards/vmauth.json
|
|
environment:
|
|
- "GF_INSTALL_PLUGINS=victoriametrics-metrics-datasource"
|
|
restart: always
|