-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.yaml
80 lines (70 loc) · 1.17 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
version: '3'
# TODO(dio): use `expose` instead of `ports` for following services.
services:
plain.front:
build: envoy/front/plain
ports:
- 8000:8000
depends_on:
- api
networks:
- internal
- external
secure.front:
build: envoy/front/secure
image: sample_secure_front:latest
ports:
- 8001:8001
depends_on:
- api
- cert
networks:
- internal
- external
greeter:
build: services/hello
ports:
- 5001:5001
depends_on:
- api
networks:
- internal
internal:
build: envoy/internal
ports:
- 10000:10000
networks:
- internal
address.internal:
build: services/address
ports:
- 3001:3001
depends_on:
- api
networks:
- internal
bio.internal:
build: services/bio
ports:
- 3002:3002
depends_on:
- api
networks:
- internal
client:
build: client
depends_on:
- api
- cert
networks:
- internal
- external
api:
build: api
image: sample_api:latest
cert:
build: cert
image: sample_cert:latest
networks:
external:
internal: