Add Grafana, Influxdb

This commit is contained in:
2021-03-20 12:49:44 +01:00
parent 4ea086fb00
commit 679d9c9e1c
5 changed files with 50 additions and 6 deletions

View File

@@ -0,0 +1,22 @@
# If after the Start of the Container the logs say: "You may have issues with file permissions"
# Change the wirte permissions for the ./grafana and ./grafana_ext folder using: "chown 472 ./grafana"
# or see https://community.grafana.com/t/new-docker-install-with-persistent-storage-permission-problem/10896
version: '2'
services:
grafana:
image: grafana/grafana
restart: unless-stopped
ports:
- '96:3000'
volumes:
- ./grafana:/var/lib/grafana
#- ./grafana_etc:/etc/grafana
environment:
- GF_SECURITY_ADMIN_USER=admin
- GF_SECURITY_ADMIN_PASSWORD=changeme
user: "root"