-
Notifications
You must be signed in to change notification settings - Fork 8
/
docker-compose.yml
282 lines (266 loc) · 6.78 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
version: '3.8'
x-app: &app
build:
context: .
target: ams-base
args:
- SETTINGS__BULKRAX__ENABLED=true
# command: sh -l -c "bundle && bundle exec puma -v -b tcp://0.0.0.0:3000"
env_file:
- .env
- .env.development
# NOTE: all common env variables moved to .env
image: ghcr.io/wgbh-mla/ams:${TAG:-latest}
volumes:
- uploads:/app/samvera/hyrax-webapp/public/uploads:cached
- assets:/app/samvera/hyrax-webapp/public/assets:cached
- cache:/app/samvera/hyrax-webapp/tmp/cache:cached
- .:/app/samvera/hyrax-webapp
networks:
internal:
volumes:
assets:
cache:
fcrepo:
mysql:
redis:
postgres:
solr:
uploads:
zk:
zoo:
networks:
internal:
services:
postgres:
image: postgres:latest
env_file:
- .env
- .env.development
ports:
- "5432"
volumes:
- postgres:/var/lib/postgresql/data
networks:
internal:
db:
image: mariadb:10.11.2
environment:
- MYSQL_DATABASE=${MYSQL_DATABASE}
- MYSQL_USER=${MYSQL_DATABASE}
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
- MYSQL_HOST=${MYSQL_HOST}
env_file:
- .env
- .env.development
ports:
- '3306'
volumes:
- 'mysql:/var/lib/mysql'
networks:
internal:
command: ['mysqld', '--character-set-server=utf8', '--collation-server=utf8_unicode_ci', '--max-allowed-packet=1073741824']
pgloader:
image: alpine
command: sh -c "
if [ -z ${MIGRATE_DB} ]; then exit 1;
else
apk add pgloader;
pgloader mysql://root:DatabaseFTW@db/gbh postgresql://ams_user:ams_password@postgres/ams;
fi"
networks:
internal:
tty: true
stdin_open: true
depends_on:
db:
condition: service_started
postgres:
condition: service_started
zoo:
image: zookeeper:3.6.2
ports:
- 2181:2181
- 7001:7000
environment:
- ZOO_MY_ID=1
- ZOO_SERVERS=server.1=zoo:2888:3888;2181
- ZOO_4LW_COMMANDS_WHITELIST=mntr,srvr,ruok,conf
volumes:
- zoo:/data
- zk:/datalog
networks:
internal:
healthcheck:
test: ["CMD-SHELL", "echo 'ruok' | nc -w 2 -q 2 localhost 2181 | grep imok || exit 1"]
interval: "10s"
timeout: "8s"
solr:
image: ams/solr:8
build:
context: solr
dockerfile: Dockerfile
env_file:
- .env
environment:
- OOM=script
- VIRTUAL_PORT=8983
- VIRTUAL_HOST=solr.ams.test
user: root
command: bash -c "
chown -R 8983:8983 /var/solr
&& ./bin/solr zk cp file:/var/solr/data/security.json zk:/security.json
&& runuser -u solr -- solr-foreground"
expose:
- 8983
volumes:
- solr:/var/solr
networks:
internal:
healthcheck:
test: curl -sf http://$$SOLR_ADMIN_USER:$$SOLR_ADMIN_PASSWORD@localhost:8983/solr/admin/cores?action=STATUS || exit 1
start_period: 10s
interval: 20s
timeout: 5s
retries: 3
depends_on:
zoo:
condition: service_healthy
redis:
image: redis:5
command: redis-server
volumes:
- redis:/data
networks:
internal:
fcrepo:
image: ghcr.io/samvera/fcrepo4:4.7.5
volumes:
- fcrepo:/data:cached
env_file:
- .env
expose:
- 8080
environment:
- VIRTUAL_PORT=8080
- VIRTUAL_HOST=fcrepo.ams.test
- JAVA_OPTIONS=-Dfcrepo.object.directory="/data/objects" -Dfcrepo.binary.directory="/data/binaries" -Dfcrepo.mysql.host=db -Dfcrepo.mysql.username=root -Dfcrepo.mysql.password=DatabaseFTW
- MODESHAPE_CONFIG=classpath:/config/jdbc-mysql/repository.json
- DATABASE_PASSWORD=${DATABASE_PASSWORD}
networks:
internal:
depends_on:
db:
condition: service_started
# Do not recurse through all of tmp. derivitives will make booting
# very slow and eventually just time out as data grows
check_volumes:
<<: *app
user: root
entrypoint: ["sh", "-x", "-c"]
command:
- >
chown -R app:app /app/samvera/hyrax-webapp/public/uploads &&
chown -R app:app /app/samvera/hyrax-webapp/public/assets &&
chown -R app:app /app/samvera/hyrax-webapp/tmp/cache
initialize_app:
<<: *app
environment:
- CONFDIR=/app/samvera/hyrax-webapp/solr/config
entrypoint: ["sh", "-c"]
# we need to do seed seperate because activerecord doesn't reload properly otherwise
command:
- >
if [ -v DEPENDENCIES_NEXT ]; then
export BUNDLE_GEMFILE=Gemfile_next;
export BUNDLER_VERSION=2.0.1
else
export BUNDLE_GEMFILE=Gemfile;
fi;
solrcloud-upload-configset.sh /app/samvera/hyrax-webapp/solr/config &&
solrcloud-assign-configset.sh &&
SOLR_COLLECTION_NAME=hydra-test solrcloud-assign-configset.sh &&
rails db:create db:schema:load db:migrate &&
rails db:seed
depends_on:
postgres:
condition: service_started
db:
condition: service_started
solr:
condition: service_healthy
fcrepo:
condition: service_started
redis:
condition: service_started
web:
<<: *app
environment:
- VIRTUAL_PORT=3000
- VIRTUAL_HOST=.ams.test
# command: sh -l -c "sleep infinity"
cap_add:
- SYS_PTRACE
depends_on:
postgres:
condition: service_started
db:
condition: service_started
solr:
condition: service_started
fcrepo:
condition: service_started
redis:
condition: service_started
zoo:
condition: service_started
check_volumes:
condition: service_started
chrome:
condition: service_started
worker:
condition: service_started
initialize_app:
condition: service_completed_successfully
expose:
- 3000
worker:
<<: *app
build:
context: .
target: ams-worker
args:
- SETTINGS__BULKRAX__ENABLED=true
image: ghcr.io/wgbh-mla/ams/worker:${TAG:-latest}
depends_on:
check_volumes:
condition: service_completed_successfully
postgres:
condition: service_started
db:
condition: service_started
solr:
condition: service_started
fcrepo:
condition: service_started
redis:
condition: service_started
zoo:
condition: service_started
initialize_app:
condition: service_completed_successfully
chrome:
# password is 'secret'
image: seleniarm/standalone-chromium:latest
logging:
driver: none
volumes:
- /dev/shm:/dev/shm
shm_size: 3G
networks:
internal:
environment:
- JAVA_OPTS=-Dwebdriver.chrome.whitelistedIps=
- VIRTUAL_PORT=7900
- VIRTUAL_HOST=chrome.hyku.test