-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
44 lines (43 loc) · 1.01 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
services:
otel-collector:
command: [ "--config=/etc/otelcol-config.yml" ]
extra_hosts:
- "host.docker.internal:host-gateway"
depends_on:
- otel-lgtm
image: otel/opentelemetry-collector
ports:
- mode: ingress
protocol: tcp
published: 4317
target: 4317
- mode: ingress
protocol: tcp
published: 4318
target: 4318
- mode: ingress
protocol: tcp
published: 8888
target: 8888
- mode: ingress
protocol: tcp
published: 55679
target: 55679
volumes:
- source: ./otelcol-config.yml
target: /etc/otelcol-config.yml
type: bind
otel-lgtm:
environment:
GF_AUTH_ANONYMOUS_ENABLED: "true"
GF_AUTH_ANONYMOUS_ORG_ROLE: Admin
GF_USERS_DEFAULT_THEME: light
extra_hosts:
- "host.docker.internal:host-gateway"
image: grafana/otel-lgtm
ports:
- mode: ingress
protocol: tcp
published: 3000
target: 3000