-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathdocker-compose.yml
336 lines (317 loc) · 8.35 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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
---
x-project:
name: metacpan
# ____ _____ ______ _____ ____ _____ ____
# / ___|| ____| _ \ \ / /_ _/ ___| ____/ ___|
# \___ \| _| | |_) \ \ / / | | | | _| \___ \
# ___) | |___| _ < \ V / | | |___| |___ ___) |
# |____/|_____|_| \_\ \_/ |___\____|_____|____/
#
include:
- path:
- src/metacpan-web/docker-compose.yml
- compose/web.yml
services:
# _
# __ _ _ __ (_)
# / _` | '_ \| |
# | (_| | |_) | |
# \__,_| .__/|_|
# |_|
#
cloud_api:
profiles:
- cloud-es
depends_on:
pghost:
condition: service_healthy
image: metacpan/metacpan-api:latest
build:
context: ./src/metacpan-api
# put variables for compose inside a .env file
# use env_file for variables to be set inside the container
env_file:
- .env
command: >
${API_SERVER} ./bin/api.pl
volumes:
- type: volume
source: cpan
target: /CPAN
- type: bind
source: ./src/metacpan-api
target: /metacpan-api
- type: bind
source: ./bin/index-cpan.sh
target: /bin/index-cpan.sh
read_only: true
- type: bind
source: ./bin/partial-cpan-mirror.sh
target: /bin/partial-cpan-mirror.sh
read_only: true
ports:
- "5000:5000"
networks:
- database
- web-network
api:
profiles:
- dev
depends_on:
elasticsearch:
condition: service_healthy
pghost:
condition: service_healthy
image: metacpan/metacpan-api:latest
build:
context: ./src/metacpan-api
# put variables for compose inside a .env file
# use env_file for variables to be set inside the container
env_file:
- .env
command: >
${API_SERVER} ./bin/api.pl
volumes:
- type: volume
source: cpan
target: /CPAN
- type: bind
source: ./src/metacpan-api
target: /metacpan-api
- type: bind
source: ./bin/index-cpan.sh
target: /bin/index-cpan.sh
read_only: true
- type: bind
source: ./bin/partial-cpan-mirror.sh
target: /bin/partial-cpan-mirror.sh
read_only: true
ports:
- "5000:5000"
networks:
- database
- elasticsearch
- web-network
api_test:
profiles:
- test
- ingest-test
depends_on:
elasticsearch_test:
condition: service_healthy
pghost:
condition: service_healthy
image: metacpan/metacpan-api:latest
build:
context: ./src/metacpan-api
env_file:
- localapi_test.env
command: >
${API_SERVER} ./bin/api.pl
volumes:
- type: volume
source: cpan
target: /CPAN
- type: bind
source: ./src/metacpan-api
target: /metacpan-api
- type: bind
source: ./bin/index-cpan.sh
target: /bin/index-cpan.sh
read_only: true
- type: bind
source: ./bin/partial-cpan-mirror.sh
target: /bin/partial-cpan-mirror.sh
read_only: true
ports:
- "5000"
networks:
- database
- elasticsearch
ingest:
profiles:
- dev
- ingest
image: metacpan/metacpan-ingest:latest
volumes:
- type: volume
source: cpan
target: /CPAN
- type: bind
source: ./configs/metacpan-ingest/metacpan_ingest_local.conf
target: /metacpan-ingest/metacpan_ingest_local.conf
read_only: true
depends_on:
- elasticsearch
networks:
- elasticsearch
ingest-test:
profiles:
- ingest-test
image: metacpan/metacpan-ingest:latest
environment:
PLACK_ENV: development
volumes:
- type: volume
source: cpan
target: /CPAN
- type: bind
source: ./configs/metacpan-ingest/metacpan_ingest_local.conf
target: /metacpan-ingest/metacpan_ingest_local.conf
read_only: true
depends_on:
- elasticsearch_test
networks:
- elasticsearch
# __ _ _ __ ___ _ __
# / _` | '__/ _ \ '_ \
# | (_| | | | __/ |_) |
# \__, |_| \___| .__/
# __/ | | |
# |___/ |_|
grep:
profiles:
- grep
image: metacpan/metacpan-grep-front-end:latest
build:
context: ./src/metacpan-grep-front-end
volumes:
- type: volume
source: metacpan_git_shared
target: /shared/metacpan_git
read_only: true
- type: bind
source: ./src/metacpan-grep-front-end
target: /metacpan-grep-front-end
read_only: true
env_file:
- grep.env
# ____ _ _____ _ ____ _ ____ _____ ____
# | _ \ / \|_ _|/ \ | __ ) / \ / ___|| ____/ ___|
# | | | |/ _ \ | | / _ \ | _ \ / _ \ \___ \| _| \___ \
# | |_| / ___ \| |/ ___ \| |_) / ___ \ ___) | |___ ___) |
# |____/_/ \_\_/_/ \_\____/_/ \_\____/|_____|____/
#
# _ _ _ _
# ___| | __ _ ___| |_(_) ___ ___ ___ __ _ _ __ ___| |__
# / _ \ |/ _` / __| __| |/ __/ __|/ _ \/ _` | '__/ __| '_ \
# | __/ | (_| \__ \ |_| | (__\__ \ __/ (_| | | | (__| | | |
# \___|_|\__,_|___/\__|_|\___|___/\___|\__,_|_| \___|_| |_|
#
elasticsearch:
profiles:
- dev
- ingest
image: elasticsearch:2.4
environment:
- discovery.type=single-node
volumes:
- type: volume
source: elasticsearch
target: /usr/share/elasticsearch/data
healthcheck:
timeout: 5s
start_period: 60s
test: ["CMD", "curl", "--fail", "http://localhost:9200/_cluster/health?wait_for_status=yellow&timeout=5s"]
ports:
- "9200"
networks:
- elasticsearch
# _ _ _ _
# ___| | __ _ ___| |_(_) ___ ___ ___ __ _ _ __ ___| |__
# / _ \ |/ _` / __| __| |/ __/ __|/ _ \/ _` | '__/ __| '_ \
# | __/ | (_| \__ \ |_| | (__\__ \ __/ (_| | | | (__| | | |
# \___|_|\__,_|___/\__|_|\___|___/\___|\__,_|_| \___|_| |_|
#
# _ _
# | |_ ___ ___| |_
# | __/ _ \/ __| __|
# | || __/\__ \ |_
# \__\___||___/\__|
#
elasticsearch_test:
profiles:
- test
- ingest-test
image: elasticsearch:2.4
environment:
- discovery.type=single-node
volumes:
- type: volume
source: elasticsearch_test
target: /usr/share/elasticsearch/data
healthcheck:
timeout: 5s
start_period: 60s
test: ["CMD", "curl", "--fail", "http://localhost:9200/_cluster/health?wait_for_status=yellow&timeout=5s"]
ports:
- "9200"
networks:
- elasticsearch
# _ _
# _ __ ___ ___| |_ __ _ _ __ ___ ___ __ _| |
# | '_ \ / _ \/ __| __/ _` | '__/ _ \/ __|/ _` | |
# | |_) | (_) \__ \ || (_| | | | __/\__ \ (_| | |
# | .__/ \___/|___/\__\__, |_| \___||___/\__, |_|
# |_| |___/ |_|
#
pghost:
profiles:
- cloud-es
- dev
- test
- ingest-test
hostname: pghost
image: "postgres:${PG_VERSION_TAG:-9.6-alpine}"
build:
context: "./pg"
args:
PG_TAG: "${PG_VERSION_TAG:-9.6-alpine}"
environment:
POSTGRES_PASSWORD: metacpan
POSTGRES_USER: metacpan123
POSTGRES_DB: metacpan
networks:
- database
healthcheck:
interval: 10s
timeout: 1s
retries: 0
start_period: 480s
test: ["CMD", "/healthcheck.sh"]
volumes:
- type: volume
source: pghost-data
target: /var/lib/postgresql/data
- type: bind
source: ./pg/docker-entrypoint-initdb.d
target: /docker-entrypoint-initdb.d
read_only: true
- type: bind
source: ./pg/healthcheck.sh
target: /healthcheck.sh
read_only: true
# _ _ _____ _______ _____ ____ _ ______
# | \ | | ____|_ _\ \ / / _ \| _ \| |/ / ___|
# | \| | _| | | \ \ /\ / / | | | |_) | ' /\___ \
# | |\ | |___ | | \ V V /| |_| | _ <| . \ ___) |
# |_| \_|_____| |_| \_/\_/ \___/|_| \_\_|\_\____/
#
networks:
database:
elasticsearch:
web-network:
# __ _____ _ _ _ __ __ _____ ____
# \ \ / / _ \| | | | | | \/ | ____/ ___|
# \ \ / / | | | | | | | | |\/| | _| \___ \
# \ V /| |_| | |__| |_| | | | | |___ ___) |
# \_/ \___/|_____\___/|_| |_|_____|____/
#
volumes:
api_carton:
cpan:
elasticsearch:
elasticsearch_test:
pghost-data:
metacpan_git_shared:
external: true