Created
January 18, 2022 12:48
-
-
Save lazyfrosch/cb66f212e811e2f42048a9d20493bd8b to your computer and use it in GitHub Desktop.
Grafana with Image Renderer plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
grafana: | |
image: grafana/grafana | |
volumes: | |
- storage:/var/lib/grafana | |
ports: | |
- 3000:3000 | |
environment: | |
GF_RENDERING_SERVER_URL: http://renderer:8081/render | |
GF_RENDERING_CALLBACK_URL: http://grafana:3000/ | |
GF_LOG_FILTERS: rendering:debug | |
renderer: | |
image: grafana/grafana-image-renderer | |
environment: | |
ENABLE_METRICS: 'true' | |
LOG_LEVEL: debug | |
RENDERING_VERBOSE_LOGGING: 'true' | |
RENDERING_MODE: reusable | |
#RENDERING_CLUSTERING_MODE: default | |
#RENDERING_CLUSTERING_MAX_CONCURRENCY: 5 | |
volumes: | |
storage: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment