We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63c9149 commit fd97ab2Copy full SHA for fd97ab2
docker/grafana/docker-compose.yml
@@ -22,6 +22,25 @@ services:
22
volumes:
23
- /docker/appdata/grafana:/etc/grafana/provisioning/datasources
24
25
+ loki:
26
+ image: grafana/loki:2.4.0
27
+ container_name: loki
28
+ volumes:
29
+ - /docker/appdata/loki:/etc/loki
30
+ ports:
31
+ - "3100:3100"
32
+ restart: unless-stopped
33
+ command: -config.file=/etc/loki/loki-config.yml
34
+
35
+ promtail:
36
+ image: grafana/promtail:2.4.0
37
+ container_name: promtail
38
39
+ - /var/log:/var/log
40
+ - /docker/appdata/promtail:/etc/promtail
41
42
+ command: -config.file=/etc/promtail/promtail-config.yml
43
44
snmp-exporter:
45
image: prom/snmp-exporter:v0.26.0
46
0 commit comments