17 lines
526 B
YAML
17 lines
526 B
YAML
services:
|
|
otel-lgtm:
|
|
container_name: lgtm
|
|
tty: true
|
|
stdin_open: true
|
|
volumes:
|
|
- './container/grafana:/data/grafana'
|
|
- './container/prometheus:/data/prometheus'
|
|
- './container/loki:/data/loki'
|
|
- './prometheus.yml:/otel-lgtm/prometheus.yaml'
|
|
environment:
|
|
- GF_PATHS_DATA=/data/grafana
|
|
env_file:
|
|
- .env
|
|
network_mode: host
|
|
image: 'docker.io/grafana/otel-lgtm:latest'
|
|
restart: always |