-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.yml
59 lines (55 loc) · 1.36 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
56
57
58
59
version: '2'
services:
jaeger-collector:
image: jaegertracing/jaeger-collector
environment:
- SPAN_STORAGE_TYPE=elasticsearch
- ES_SERVER_URLS=http://elastic:9200
ports:
- "14269"
- "14268:14268"
- "14267"
- "14250"
- "9411:9411"
restart: on-failure
depends_on:
- elastic
jaeger-query:
image: jaegertracing/jaeger-query
environment:
- SPAN_STORAGE_TYPE=elasticsearch
- ES_SERVER_URLS=http://elastic:9200
ports:
- "16686:16686"
- "16687"
restart: always
depends_on:
- elastic
jaeger-agent:
image: jaegertracing/jaeger-agent
environment:
- LOG_LEVEL=debug
- REPORTER_TCHANNEL_HOST_PORT=jaeger-collector:14267
ports:
- "5775:5775/udp"
- "6831:6831/udp"
- "6832:6832/udp"
- "5778:5778"
restart: on-failure
depends_on:
- jaeger-collector
elastic:
image: docker.elastic.co/elasticsearch/elasticsearch:6.0.0
ports:
- "9200:9200"
ulimits:
memlock:
soft: -1
hard: -1
mem_limit: 1g
container_name: elastic
hostname: elastic
environment:
- bootstrap.memory_lock=true
- ES_JAVA_OPTS=-Xms512m -Xmx512m
- discovery.type=single-node