Updating Grafana Docker - Cant figure out what’s going wrong

– Apologies for the double post, thought I found the issue with file permissions but with that fixed still wont update.

I’ve got a Grafana compose that I use for my deployment. I want to update it from 7.3.4 to the latest 7.3.7. Compose looks like this:

version: “3”

services:
grafana:
container_name: Grafana
restart: always
image: grafana/grafana:latest
volumes:

  • ./Grafana-Storage:/var/lib/grafana
  • ./Grafana-Conf:/etc/grafana
  • ./Grafana-Share:/usr/share/grafana
  • ./Grafana-Log:/var/log/grafana

I’ve tried specifying the specific image tag, ive pulled the latest version on both compose and docker itself. My update path is:

docker-compose down
docker-compose pull
docker-compose up --force-recreate -d

But I still cannot get it to update on the dashboard, it still insists it is using 7.3.4.

Any ideas?

This topic was automatically closed after 365 days. New replies are no longer allowed.