-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
131 lines (123 loc) · 2.6 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
version: '3.7'
services:
consul-server1:
image: hashicorp/consul:1.14.6
container_name: consul-server1
restart: always
volumes:
- ./consul_server/server1.json:/consul/config/server1.json:ro
networks:
- consul
ports:
- "8500:8500"
- "8600:8600/tcp"
- "8600:8600/udp"
command: "agent -bootstrap-expect=3"
consul-server2:
image: hashicorp/consul:1.14.6
container_name: consul-server2
restart: always
volumes:
- ./consul_server/server2.json:/consul/config/server2.json:ro
networks:
- consul
command: "agent -bootstrap-expect=3"
consul-server3:
image: hashicorp/consul:1.14.6
container_name: consul-server3
restart: always
volumes:
- ./consul_server/server3.json:/consul/config/server3.json:ro
networks:
- consul
command: "agent -bootstrap-expect=3"
consul-client:
image: hashicorp/consul:1.14.6
container_name: consul-client
restart: always
volumes:
- ./consul_server/client.json:/consul/config/client.json:ro
- ./certs/:/consul/config/certs/:ro
networks:
- consul
command: "agent"
load_balancer:
image: fabiolb/fabio
ports:
- 9998:9998
- 9999:9999
command: -registry.consul.addr="consul-server1:8500"
networks:
- consul
apigateway:
build:
context: apigateway
dockerfile: Dockerfile
image: apigateway
ports:
- 8001:8000
environment:
- NODE=apigateway
- PRIMARY=1
- CONSUL_SERVER=consul-server1
dns:
- 127.0.0.1
- 8.8.8.8
- 8.8.4.4
depends_on:
- consul-server1
volumes:
- ./certs/:/consul/config/certs/:ro
cap_add:
- NET_ADMIN
networks:
- consul
countries:
build:
context: countries
dockerfile: Dockerfile
image: countries
ports:
- 8002:8000
environment:
- NODE=countries
- PRIMARY=1
- CONSUL_SERVER=consul-server1
dns:
- 127.0.0.1
- 8.8.8.8
- 8.8.4.4
depends_on:
- consul-server1
volumes:
- ./certs/:/consul/config/certs/:ro
cap_add:
- NET_ADMIN
networks:
- consul
food:
build:
context: food
dockerfile: Dockerfile
image: food
ports:
- 8003:8000
environment:
- NODE=food
- PRIMARY=1
- CONSUL_SERVER=consul-server1
dns:
- 127.0.0.1
- 8.8.8.8
- 8.8.4.4
depends_on:
- consul-server1
volumes:
- ./certs/:/consul/config/certs/:ro
cap_add:
- NET_ADMIN
networks:
- consul
networks:
consul:
driver: bridge