I am deploying Grafana from a Docker container.
When I navigate to the Alerting menu I see the following page:
Note from the above image there are 6 menu items on this version of the page and no option to attach images.
When I restart my Docker containers, I encounter the following page:
Note this time, a different version of the page is loaded, there are only two menu items and the option for attaching images is enabled.
What could be causing this?
I would like the second version of the page to be loaded each time as I need to attach images to my alerts.
Below is my YML file contents:
version: '3'
services:
grafana:
image: grafana/grafana:latest
ports:
- "3000:3000"
environment:
GF_PATHS_DATA : /var/lib/grafana
GF_SECURITY_ADMIN_PASSWORD : kafka
GF_RENDERING_SERVER_URL: http://renderer:8081/render
GF_RENDERING_CALLBACK_URL: http://grafana:3000/
GF_LOG_FILTERS: rendering:debug
volumes:
- ./grafana/provisioning:/etc/grafana/provisioning
- ./grafana/dashboards:/var/lib/grafana/dashboards
container_name: grafana
renderer:
image: grafana/grafana-image-renderer:latest
volumes:
- ./renderer/config.json:/usr/src/app/config.json
container_name: renderer
prometheus:
image: "prom/prometheus"
ports:
- "9090:9090"
volumes:
- ./etc/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml
command: "--config.file=/etc/prometheus/prometheus.yml"
container_name: prometheus