Is it possible to import a dashboard when building my docker image for Grafana.
My docker-compose.yml
currently looks like this:
# /docker-compose.yml
version: "3"
services:
grafana:
image: grafana/grafana:latest
ports:
- 3000:3000
Is there anything I can add there - btw the dashboard I would like to have pre setup is: https://grafana.com/grafana/dashboards/10562
Thanks.