-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
280 lines (249 loc) · 5.94 KB
/
docker-compose.yml
File metadata and controls
280 lines (249 loc) · 5.94 KB
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
#
# Copyright (C) 2021 Storm Project
#
# storm-bundle is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
#
version: "2.2"
services:
#
# Base services
#
cache:
extends:
file: docker-services.yml
service: cache
elasticsearch:
extends:
file: docker-services.yml
service: elasticsearch
database:
extends:
file: docker-services.yml
service: database
kibana:
extends:
file: docker-services.yml
service: kibana
nginx:
extends:
file: docker-services.yml
service: nginx
volumes:
#
# NGINX: conf.d directory
#
- type: bind
source: ${PWD}/config/nginx/conf.d
target: /etc/nginx/conf.d/
#
# NGINX: nginx.conf file
#
- type: bind
source: ${PWD}/config/nginx/nginx.conf
target: /etc/nginx/nginx.conf
#
# NGINX: SSL Certificates
#
- type: bind
source: ${PWD}/config/nginx/certs/development.key
target: /etc/ssl/private/test.key
- type: bind
source: ${PWD}/config/nginx/certs/development.crt
target: /etc/ssl/certs/test.crt
#
# NGINX: Static files
#
- type: volume
source: portal_static_data
target: /opt/invenio/var/instance/static
ports:
- "80:80"
- "443:443"
#
# Storm Portal celery worker
#
portal-worker:
extends:
file: docker-services.yml
service: portal
command: [ "celery -A invenio_app.celery worker --loglevel=INFO" ]
depends_on:
elasticsearch:
condition: service_started
cache:
condition: service_started
database:
condition: service_started
rabbitmq-portal:
condition: service_started
#
# Storm Portal celery broker
#
rabbitmq-portal:
extends:
file: docker-services.yml
service: rabbitmq
ports:
- "5672"
- "15672"
#
# Storm Portal Rest API
#
portal-api:
extends:
file: docker-services.yml
service: portal
command: [ "uwsgi /opt/invenio/var/instance/uwsgi.ini" ]
ports:
- "5000"
volumes:
#
# Portal Rest API: Uploaded files
#
- type: volume
source: portal_uploaded_data
target: /opt/invenio/var/instance/data
#
# Portal Rest API: Archived files
#
- type: volume
source: portal_archived_data
target: /opt/invenio/var/instance/archive
#
# Portal Rest API: uWSGI configuration
#
- type: bind
source: ${PWD}/config/app/portal/uwsgi/uwsgi.rest.ini
target: /opt/invenio/var/instance/uwsgi.ini
#
# Portal Rest API: Invenio configuration
#
- type: bind
source: ${PWD}/config/app/portal/invenio.cfg
target: /opt/invenio/var/instance/invenio.cfg
#
# Storm Portal Frontend
#
portal-ui:
extends:
file: docker-services.yml
service: portal
command: [ "uwsgi /opt/invenio/var/instance/uwsgi.ini" ]
ports:
- "5000"
volumes:
#
# Portal UI: Static files
#
- type: volume
source: portal_static_data
target: /opt/invenio/var/instance/static
#
# Portal UI: Uploaded files
#
- type: volume
source: portal_uploaded_data
target: /opt/invenio/var/instance/data
#
# Portal UI: Archived files
#
- type: volume
source: portal_archived_data
target: /opt/invenio/var/instance/archive
#
# Portal UI: uWSGI configuration
#
- type: bind
source: ${PWD}/config/app/portal/uwsgi/uwsgi.ui.ini
target: /opt/invenio/var/instance/uwsgi.ini
#
# Portal UI: Invenio configuration
#
- type: bind
source: ${PWD}/config/app/portal/invenio.cfg
target: /opt/invenio/var/instance/invenio.cfg
#
# Storm WS celery worker
#
stormws-worker:
extends:
file: docker-services.yml
service: stormws
command: [ "celery -A invenio_app.celery worker --loglevel=INFO" ]
volumes:
#
# Docker (Connection socket)
#
- type: bind
source: /var/run/docker.sock
target: /var/run/docker.sock
read_only: true
#
# Docker (Registry credentials - Requires `docker login`)
#
- type: bind
source: /$HOME/.docker/config.json
target: /root/.docker/config.json
read_only: true
#
# Storm WS Rest API: Uploaded files
#
- type: volume
source: stormws_uploaded_data
target: /opt/invenio/var/instance/data
depends_on:
elasticsearch:
condition: service_started
cache:
condition: service_started
database:
condition: service_started
rabbitmq-ws:
condition: service_started
#
# Storm Portal celery broker
#
rabbitmq-ws:
extends:
file: docker-services.yml
service: rabbitmq
ports:
- "5672"
- "15672"
#
# Storm WS Rest API
#
stormws-api:
extends:
file: docker-services.yml
service: stormws
command: [ "uwsgi /opt/invenio/var/instance/uwsgi.ini" ]
ports:
- "5000"
volumes:
#
# Storm WS Rest API: Uploaded files
#
- type: volume
source: stormws_uploaded_data
target: /opt/invenio/var/instance/data
#
# Storm WS Rest API: uWSGI configuration
#
- type: bind
source: ${PWD}/config/app/ws/uwsgi/uwsgi.rest.ini
target: /opt/invenio/var/instance/uwsgi.ini
#
# Storm WS Rest API: Invenio configuration
#
- type: bind
source: ${PWD}/config/app/ws/invenio.cfg
target: /opt/invenio/var/instance/invenio.cfg
volumes:
# Portal volumes
portal_static_data: null
portal_archived_data: null
portal_uploaded_data: null
# Storm WS volumes
stormws_uploaded_data: null