Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maronato/grafana
Grafana with preloaded stuff
https://github.com/maronato/grafana
Last synced: 19 days ago
JSON representation
Grafana with preloaded stuff
- Host: GitHub
- URL: https://github.com/maronato/grafana
- Owner: Maronato
- Created: 2019-06-03T00:59:58.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-06-03T01:29:45.000Z (over 5 years ago)
- Last Synced: 2024-11-04T22:42:21.465Z (2 months ago)
- Language: Dockerfile
- Size: 31.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Grafana
Customizable grafana image with plugins preinstalled.
Allows you to easily preload datasources and dashboards.
All you have to do is create a new Dockerfile using `maronato/grafana` as the base image and add your dashboards:
```Dockerfile
FROM maronato/grafana:latest# Default datasources
ADD datasources.yml /etc/grafana/provisioning/datasources/
# Dashboard api file
ADD dashboards.yml /etc/grafana/provisioning/dashboards/
# Folder with dashboards
ADD dashboards /etc/grafana/dashboards/
```Then, create a volume mapping to `/data` to persist grafana stuff.
You'll find an example with Prometheus integration on the `example` branch of this repo.