-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (33 loc) · 871 Bytes
/
docker-compose.yml
File metadata and controls
37 lines (33 loc) · 871 Bytes
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
version: '3.8'
services:
# rtpengine:
# image: fonoster/rtpengine:latest
# container_name: rtpengine
# network_mode: host
# privileged: true
# environment:
# - PORT_MIN=10000
# - PORT_MAX=20000
# - LOG_LEVEL=7
# restart: unless-stopped
jaeger:
image: jaegertracing/jaeger:latest
container_name: jaeger
ports:
- "16686:16686" # UI
- "4318:4318" # OTLP HTTP
environment:
- METRICS_STORAGE_TYPE=prometheus
- PROMETHEUS_SERVER_URL=http://prometheus:9090
command: --config /jaeger/config.yaml
volumes:
- ./config.yml:/jaeger/config.yaml
restart: unless-stopped
prometheus:
image: prom/prometheus:latest
container_name: prometheus
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
ports:
- "9092:9090"
restart: unless-stopped