23 lines
392 B
YAML
23 lines
392 B
YAML
|
---
|
||
|
services:
|
||
|
otel:
|
||
|
image: 'grafana/otel-lgtm:0.7.1'
|
||
|
init: true
|
||
|
restart: unless-stopped
|
||
|
hostname: otel
|
||
|
ports:
|
||
|
- '${OTEL_PORT:-43000}:3000'
|
||
|
profiles:
|
||
|
- full
|
||
|
- monitoring
|
||
|
- otel
|
||
|
volumes:
|
||
|
- 'otel_data:/otel-lgtm/data'
|
||
|
- 'otel_loki:/loki'
|
||
|
- 'otel_tempo:/tmp/tempo'
|
||
|
|
||
|
volumes:
|
||
|
otel_data: {}
|
||
|
otel_loki: {}
|
||
|
otel_tempo: {}
|