docker-compose icon indicating copy to clipboard operation
docker-compose copied to clipboard

fix: modify uncorrect db name.

Open dakele123 opened this issue 1 year ago • 3 comments

What was changed

modify the uncorrect db name; which should be postgres12

Why?

Checklist

  1. Closes #209

  2. How was this tested: test in my pc

  3. Any docs updates needed? no docs needed.

dakele123 avatar Jun 18 '24 11:06 dakele123

CLA assistant check
All committers have signed the CLA.

CLAassistant avatar Jun 18 '24 11:06 CLAassistant

Looks good, thank you :) Please sign the CLA and I'll get this merged.

robholland avatar Jun 18 '24 11:06 robholland

Btw I also had to bump the grafana version as some of the dashboards didn't work properly.

In deployment/grafana/Dockerfile:

FROM grafana/grafana:11.2.0
ADD ./provisioning /etc/grafana/provisioning
ADD ./config.ini /etc/grafana/config.ini
ADD ./dashboards /var/lib/grafana/dashboards

also you can update the docker compose so the tag matches the version in the Dockerfile:

  grafana:
    container_name: grafana
    image: grafana/grafana:11.2.0
    build: "./deployment/grafana"

The latest Grafana version has some useful features, like being able to explore all the metrics without having to write a query:

image

If you want to merge this PR, I can make a new one with the bumped Grafana version :) Let me know

gregbrowndev avatar Sep 12 '24 12:09 gregbrowndev

Fixed by #214

robholland avatar Nov 07 '24 16:11 robholland