-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yaml
39 lines (39 loc) · 978 Bytes
/
docker-compose.yaml
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
version: "2"
networks:
default:
external: true
name: pullman
services:
gateway:
image: otel/opentelemetry-collector:latest
command: ["--config=/etc/otel-config.yaml", "--log-level=debug"]
ports:
- "13134:13134"
- "4320:4320"
volumes:
- ./certs/cert.pem:/tmp/certs/cert.pem
- ./certs/cert-key.pem:/tmp/certs/cert-key.pem
- ./config-gateway.yaml:/etc/otel-config.yaml
env_file:
- ./service.env
depends_on:
- jaeger
agent:
image: otel/opentelemetry-collector:latest
command: ["--config=/etc/otel-config.yaml", "--log-level=debug"]
ports:
- "13133:13133"
- "4317:4317"
volumes:
- ./certs/ca.pem:/tmp/certs/ca.pem
- ./config-agent.yaml:/etc/otel-config.yaml
env_file:
- ./service.env
depends_on:
- gateway
jaeger:
image: jaegertracing/all-in-one
command: ["--log-level=error"]
ports:
- "14250:14250"
- "16686:16686"