From b26a014b129bf142d44f84d395809975b3cc2334 Mon Sep 17 00:00:00 2001 From: AlpinDale <52078762+AlpinDale@users.noreply.github.com> Date: Mon, 23 Dec 2024 06:32:26 -0800 Subject: [PATCH] fix: prometheus.yaml path in monitoring example (#969) --- examples/monitoring/docker-compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/monitoring/docker-compose.yaml b/examples/monitoring/docker-compose.yaml index 006e0b8fd..e9664b882 100644 --- a/examples/monitoring/docker-compose.yaml +++ b/examples/monitoring/docker-compose.yaml @@ -9,7 +9,7 @@ services: ports: - "9090:9090" # the default port used by Prometheus volumes: - - ${PWD}/prometheus.yaml:/etc/prometheus/prometheus.yml # mount Prometheus config file + - ./prometheus.yaml:/etc/prometheus/prometheus.yml # mount Prometheus config file grafana: image: grafana/grafana:latest