Open peter-hst opened 6 months ago
Maybe port 8080 for Grafana and port 9090 for Prometheus are being used on your machine. If you cannot turn off the services using these ports, modifying the ports of Grafana and Prometheus in docker-compose.yaml
is another solution.
For example:
# docker-compose.yaml
...
prometheus:
image: prom/prometheus:v2.47.2
ports:
- "9091:9090"
...
grafana:
image: grafana/grafana:10.2.0
ports:
- "3001:3000"
...
With the previous setting, the Grafana Web is on localhost:3001 and the Prometheus Web UI is on localhost:9091.
Hello, Would you help me take a look? thanks!
I have clone your code on main branch,and then I cannot run the demo, there is something came up.