-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
64 lines (58 loc) · 1.4 KB
/
docker-compose.yml
File metadata and controls
64 lines (58 loc) · 1.4 KB
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
60
61
62
63
64
version: '3'
networks:
default:
services:
gohello:
image: gohello
container_name: gohello.ottest
environment:
- JAEGER_AGENT_ADDR=jaeger.ottest:6831
- HELLO_ADDR=:8080
- SERVICES=http://nodehello.ottest:3000/hello,http://nesthello.ottest:3000/hello
ports:
- 8080:8080
networks:
default:
aliases:
- gohello.ottest
nodehello:
image: nodehello
container_name: nodehello.ottest
environment:
- JAEGER_ENDPOINT=http://jaeger.ottest:14268/api/traces
- SERVICES=http://gohello.ottest:8080/hello,http://nesthello.ottest:3000/hello
ports:
- 8081:3000
networks:
default:
aliases:
- nodehello.ottest
nesthello:
image: nesthello
container_name: nesthello.ottest
environment:
- JAEGER_ENDPOINT=http://jaeger.ottest:14268/api/traces
- SERVICES=http://gohello.ottest:8080/hello,http://nodehello.ottest:3000/hello
ports:
- 8082:3000
networks:
default:
aliases:
- nesthello.ottest
jaeger:
image: jaegertracing/all-in-one:latest
container_name: jaeger.ottest
environment:
- COLLECTOR_ZIPKIN_HTTP_PORT=9411
ports:
- 5775:5775/udp
- 6831:6831/udp
- 6832:6832/udp
- 5778:5778
- 16686:16686
- 14268:14268
- 9411:9411
networks:
default:
aliases:
- jaeger.ottest