mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-17 10:15:51 +00:00
21 lines
658 B
YAML
21 lines
658 B
YAML
services:
|
|
prometheus:
|
|
image: prom/prometheus
|
|
ports:
|
|
- 9090:9090
|
|
volumes:
|
|
- ./prometheus.yaml:/etc/prometheus/prometheus.yml
|
|
command:
|
|
- '--config.file=/etc/prometheus/prometheus.yml'
|
|
grafana:
|
|
image: grafana/grafana
|
|
ports:
|
|
- 3000:3000
|
|
environment:
|
|
- GF_SECURITY_ADMIN_USER=admin
|
|
- GF_SECURITY_ADMIN_PASSWORD=grafana
|
|
volumes:
|
|
- ./grafana/datasources.yaml:/etc/grafana/provisioning/datasources/datasources.yaml
|
|
- ./grafana/dashboard_local.yaml:/etc/grafana/provisioning/dashboards/local.yaml
|
|
- ./grafana/clio_dashboard.json:/var/lib/grafana/dashboards/clio_dashboard.json
|