You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
390 B
14 lines
390 B
5 months ago
|
version: '3.5'
|
||
|
|
||
|
services:
|
||
|
# Grafana: used for visualization of metrics and log data through customizable dashboards.
|
||
|
grafana:
|
||
|
image: grafana/grafana:10.2.0
|
||
|
environment:
|
||
|
- GF_ANALYTICS_REPORTING_ENABLED=false
|
||
|
volumes:
|
||
|
- ./log-analyser/grafana:/var/lib/grafana
|
||
|
- ./log-analyser/grafana-provisioning/:/etc/grafana/provisioning/
|
||
|
ports:
|
||
|
- "3000:3000"
|