forked from practicalgo/code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
32 lines (32 loc) · 760 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
32 lines (32 loc) · 760 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
services:
jaeger:
image: jaegertracing/all-in-one:latest
environment:
- COLLECTOR_ZIPKIN_HOST_PORT=:9411
ports:
- 5775:5775/udp
- 6831:6831/udp
- 6832:6832/udp
- 5778:5778
- 16686:16686
- 14268:14268
- 14250:14250
- 9411:9411
stastd:
image: prom/statsd-exporter:master
container_name: statsd
command: '--statsd.event-flush-threshold=1 --log.level=debug'
ports:
- 9125:9125/udp
- 9102:9102
prometheus:
image: prom/prometheus
container_name: prometheus
volumes:
- "./infra-config/prometheus/:/etc/prometheus/"
command:
- '--config.file=/etc/prometheus/prometheus.yml'
expose:
- 9090
ports:
- 9090:9090