-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
245 lines (236 loc) · 5.42 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
version: "3.9"
services:
redstore-database:
build:
context: ./Database
dockerfile: Dockerfile
image: murilochianfa/redstore-database:development
container_name: redstore-database
restart: unless-stopped
hostname: database
ports:
- "3306:3306"
volumes:
- database:/var/lib/mysql
stdin_open: false
tty: false
networks:
- log-network
- api-network
logging:
driver: "json-file"
options:
max-size: "100k"
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-h", "127.0.0.1", "-u", "healthy"]
interval: 5s
timeout: 5s
retries: 15
start_period: 60s
redstore-logs:
build:
context: ./Logs
dockerfile: Dockerfile
image: murilochianfa/redstore-logs:development
container_name: redstore-logs
restart: unless-stopped
hostname: logs
depends_on:
- redstore-database
stdin_open: false
tty: false
networks:
- log-network
logging:
driver: "json-file"
options:
max-size: "100k"
healthcheck:
test: ["CMD", "netstat", "-a", "-p", "TCP", "-nl", "|", "grep", "0.0.0.0:514"]
interval: 1m30s
timeout: 10s
retries: 3
start_period: 40s
redstore-cache:
build:
context: ./Cache
dockerfile: Dockerfile
image: murilochianfa/redstore-cache:development
container_name: redstore-cache
restart: unless-stopped
hostname: cache
depends_on:
- redstore-logs
stdin_open: false
tty: false
networks:
- api-network
- cache-network
logging:
driver: "json-file"
options:
max-size: "100k"
healthcheck:
test: ["CMD", "netstat", "-a", "-p", "TCP", "-nl", "|", "grep", "6379"]
interval: 1m30s
timeout: 10s
retries: 3
start_period: 40s
redstore-queue:
build:
context: ./Queue
dockerfile: Dockerfile.development
image: murilochianfa/redstore-queue:development
container_name: redstore-queue
restart: unless-stopped
hostname: queue
depends_on:
- redstore-logs
ports:
- "15672:15672"
stdin_open: false
tty: false
networks:
- queue-network
logging:
driver: "json-file"
options:
max-size: "100k"
healthcheck:
test: ["CMD", "netstat", "-a", "-p", "TCP", "-nl", "|", "grep", "5672"]
interval: 1m30s
timeout: 10s
retries: 3
start_period: 40s
redstore-api:
build:
context: .
dockerfile: API/Dockerfile.development
image: murilochianfa/redstore-api:development
container_name: redstore-api
restart: unless-stopped
hostname: api
depends_on:
- redstore-queue
volumes:
- ./API/API:/var/www/html
env_file:
- ./.env
environment:
- CHECKOUT_ENVIRONMENT=sandbox
stdin_open: false
tty: false
networks:
- log-network
- queue-network
- api-network
- cache-network
logging:
driver: "json-file"
options:
max-size: "100k"
healthcheck:
test: ["CMD", "netstat", "-a", "-p", "TCP", "-nl", "|", "grep", "0.0.0.0:3000"]
interval: 1m30s
timeout: 10s
retries: 3
start_period: 40s
redstore-mailler:
build:
context: ./Mailler
dockerfile: Dockerfile.development
image: murilochianfa/redstore-mailler:development
container_name: redstore-mailler
hostname: mailler
depends_on:
- redstore-api
volumes:
- ./Mailler/App:/app
env_file:
- ./.env
stdin_open: false
tty: false
networks:
- log-network
- queue-network
- cache-network
logging:
driver: "json-file"
options:
max-size: "100k"
healthcheck:
test: ["CMD", "ping", "-c", "1", "-w", "1", "redstore-queue"]
interval: 5s
timeout: 10s
retries: 10
start_period: 20s
deploy:
mode: replicated
replicas: 1
redstore-web:
build:
context: .
dockerfile: Web/Dockerfile.development
image: murilochianfa/redstore-web:development
container_name: redstore-web
restart: unless-stopped
hostname: web
depends_on:
- redstore-api
volumes:
- ./Web/Frontend:/var/www/html
env_file:
- ./.env
stdin_open: false
tty: false
networks:
- log-network
- queue-network
- api-network
logging:
driver: "json-file"
options:
max-size: "100k"
healthcheck:
test: ["CMD", "netstat", "-a", "-p", "TCP", "-nl", "|", "grep", "0.0.0.0:443"]
interval: 1m30s
timeout: 10s
retries: 3
start_period: 40s
redstore-reverse-proxy:
build:
context: ./Reverse-Proxy
dockerfile: Dockerfile
image: murilochianfa/redstore-reverse-proxy:development
container_name: redstore-reverse-proxy
restart: unless-stopped
hostname: reverse-proxy
depends_on:
- redstore-api
- redstore-web
ports:
- "80:80"
- "443:443"
env_file:
- ./.env
stdin_open: false
tty: false
networks:
- api-network
logging:
driver: "json-file"
options:
max-size: "100k"
healthcheck:
test: ["CMD", "netstat", "-a", "-p", "TCP", "-nl", "|", "grep", "0.0.0.0:443"]
interval: 1m30s
timeout: 10s
retries: 3
start_period: 40s
networks:
log-network:
queue-network:
api-network:
cache-network:
volumes:
database: