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.
22 lines
615 B
22 lines
615 B
7 months ago
|
version: '3.5'
|
||
|
|
||
|
services:
|
||
|
# Log Analyser: used for setting up a log analysis system for visualization, log collection and log processing.
|
||
|
|
||
|
loki:
|
||
|
container_name: loki
|
||
|
image: grafana/loki:3.0.0
|
||
|
command: -config.file=/conf/loki-config.yaml
|
||
|
volumes:
|
||
|
- ./log-analyser/loki/data:/data
|
||
|
- ./log-analyser/loki/conf:/conf
|
||
|
ports:
|
||
|
- "3100:3100"
|
||
|
|
||
|
otel-collector:
|
||
|
container_name: otel
|
||
|
image: otel/opentelemetry-collector-contrib
|
||
|
volumes:
|
||
|
- ./log-analyser/otel-collector-config.yaml:/etc/otelcol-contrib/config.yaml
|
||
|
- ./log-analyser/jitsi-logs/:/tmp/jitsi-logs/
|