I want to change the panel background when embed it to a website but i could only choose dark and light theme. I tried to clone plugin GitHub - yesoreyeram/yesoreyeram-boomtheme-panel: Grafana Panel for adding styles but i didn’t see plugin in Connections.Here is my dockerfile:
version: ‘2’
services:
grafana:
image: grafana/grafana:latest
container_name: grafana-copy
ports:
- 3456:3000
volumes:
- ./ngsild-grafana-datasource:/var/lib/grafana/plugins/ngsild-grafana-datasource:ro
- ./mongodb-grafana:/var/lib/grafana/plugins/mongodb-grafana:ro
- ./grafana-mongodb-datasource:/var/lib/grafana/plugins/grafana-mongodb-datasource:ro
- ./yesoreyeram-boomtheme-panel:/var/lib/grafana/plugins/yesoreyeram-boomtheme-panel:ro
environment:
- GF_DEFAULT_APP_MODE=development
- GF_RENDERING_SERVER_URL=http://renderer:8081/render
- GF_RENDERING_CALLBACK_URL=http://grafana:3000/
- GF_LOG_FILTERS=rendering:debug
- GF_PATHS_PLUGINS=/var/lib/grafana/plugins
- GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS=true
- GF_AUTH_ANONYMOUS_ENABLED=true
- GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
- GF_SECURITY_ALLOW_EMBEDDING=true
- GF_SERVER_DOMAIN=10.84.240.167
extra_hosts:
- "host.docker.internal:host-gateway"
networks:
default:
name: fiware_default
external: true
How can i get the plugin or are there any other ways to change the background ?