Dear,
I have installed the basic grafana container using this yaml file to which I added the geomap plugin.
version: "3.8"
services:
grafana:
image: grafana/grafana:latest
container_name: grafana
restart: unless-stopped
environment:
- TERM=linux
- GF_INSTALL_PLUGINS=grafana-clock-panel,grafana-polystat-panel
ports:
- '3000:3000'
volumes:
- 'grafana_storage:/var/lib/grafana'
volumes:
grafana_storage: {}
Now, I would like to add a static geojson file to display Polygons on the geomap viewer. I read in the doc that you can add the file in a specific folder. But, using docker, I wish to have this file still available the next time I upgrade the docker image, and avoid to have to add the geojson file inside the container each time.
What would be the best approach to do that?!
Many thanks,