-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yaml
57 lines (50 loc) · 942 Bytes
/
docker-compose.yaml
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
version: "3.7"
services:
edge-envoy:
build:
context: ./edge-envoy
dockerfile: Dockerfile
networks:
- envoymesh
ports:
- "9901:9901"
- "9090:9090"
metricsservice:
build:
context: ./metricsservice
dockerfile: Dockerfile
networks:
envoymesh:
aliases:
- metricsservice
ports:
- "10001:10001"
fluentd:
build: ./fluentd
links:
- "elasticsearch"
networks:
envoymesh:
aliases:
- fluentd
ports:
- "24224:24224"
- "24224:24224/udp"
elasticsearch:
image: elasticsearch:6.8.2
networks:
- envoymesh
expose:
- 9200
ports:
- "9200:9200"
kibana:
image: kibana:6.8.2
networks:
- envoymesh
links:
- "elasticsearch"
ports:
- "5601:5601"
networks:
envoymesh: {}