-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
55 lines (50 loc) · 1.24 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
45
46
47
48
49
50
51
52
53
54
55
version: '3.8'
services:
rabbitmq:
image: heidiks/rabbitmq-delayed-message-exchange:latest
ports:
- "5672:5672"
- "15672:15672"
environment:
RABBITMQ_DEFAULT_USER: guest
RABBITMQ_DEFAULT_PASS: guest
jaeger:
image: jaegertracing/all-in-one
ports:
- 5775:5775
- 6831:6831
- 6832:6832
- 5778:5778
- 16686:16686
- 14268:14268
- 14250:14250
- 9411:9411
deploy:
restart_policy:
condition: on-failure
prometheus:
image: prom/prometheus
volumes:
- ./config/prometheus.yml:/etc/prometheus/prometheus.yml
ports:
- 9090:9090
collector-gateway:
image: otel/opentelemetry-collector-contrib
volumes:
- ./config/collector-gateway.yml:/etc/otel-collector-config.yaml
command: ["--config=/etc/otel-collector-config.yaml"]
ports:
- "1888:1888"
- "8888:8888"
- "8889:8889"
- "13133:13133"
- "4320:4320"
- "4319:4319"
- "55670:55679"
collector-agent:
image: otel/opentelemetry-collector:0.29.0
volumes:
- ./config/collector-agent.yml:/etc/otel-collector-config.yaml
command: ["--config=/etc/otel-collector-config.yaml"]
ports:
- "4318:4318"