initial commit

This commit is contained in:
2025-03-27 18:59:31 +01:00
commit 879d596740
17 changed files with 508 additions and 0 deletions

View File

@ -0,0 +1,18 @@
version: "3.3"
services:
grafana:
image: grafana/grafana:latest
container_name: grafana
restart: always
user: "1000"
ports:
- "3000:3000" # expose for localhost
volumes:
- ./data:/var/lib/grafana # data path
- ./grafana/grafana.ini:/etc/grafana/grafana.ini
- ./grafana/provisioning:/etc/grafana/provisioning
environment:
- GF_INSTALL_PLUGINS=grafana-clock-panel,grafana-simple-json-datasource
- GF_SECURITY_ADMIN_USER=your-username
- GF_SECURITY_ADMIN_PASSWORD=your-super-secret-password

View File

@ -0,0 +1,2 @@
[plugin.marcusolsson-csv-datasource]
allow_local_mode = true