-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.production.yml
178 lines (166 loc) · 3.98 KB
/
docker-compose.production.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
version: '3.8'
x-app: &app
user: root
build:
context: .
target: hyku-base
args:
- HYKU_BULKRAX_ENABLED=true
image: registry.gitlab.com/notch8/britishlibrary:${TAG:-latest}
env_file:
- .env.production
# NOTE: all common env variables moved to .env
volumes:
- .:/app/samvera/hyrax-webapp
networks:
internal:
logging:
driver: "json-file"
options:
max-size: "3g"
volumes:
redis:
networks:
internal:
services:
zoo1:
image: zookeeper:3.4
environment:
- ZOO_MY_ID=1
- ZOO_SERVERS=server.1=zoo1:2888:3888
expose:
- 2181
- 2888
- 3888
volumes:
- ./zk1:/bitnami/zookeeper
networks:
internal:
aliases:
- zookeeper_cluster
healthcheck:
test: ["CMD-SHELL", "echo 'ruok' | nc -w 2 -q 2 localhost 2181 | grep imok || exit 1"]
interval: "10s"
timeout: "8"
solr:
image: bitnami/solr:8
environment:
- OOM=script
- SOLR_HEAP=4g
- SOLR_ADMIN_USERNAME=admin
- SOLR_ADMIN_PASSWORD=admin
- SOLR_COLLECTION=hydra-development
- SOLR_CLOUD_BOOTSTRAP=no
- SOLR_ENABLE_CLOUD_MODE=yes
- SOLR_ENABLE_AUTHENTICATION=yes
- SOLR_PORT_NUMBER=8983
- SOLR_ZK_HOSTS=zoo1
- VIRTUAL_PORT=8983
- VIRTUAL_HOST=solr.hyku.test
depends_on:
zoo1:
condition: service_healthy
ports:
- 8983:8983
volumes:
- .:/app
- ./solr:/bitnami
networks:
internal:
fcrepo:
image: cbeer/fcrepo4:4.7
env_file:
- .env.production
expose:
- 8080
volumes:
- ./fcrepo:/data
environment:
- JAVA_OPTS=${JAVA_OPTS} -Dfcrepo.modeshape.configuration="classpath:/config/jdbc-postgresql/repository.json" -Dfcrepo.postgresql.host=db -Dfcrepo.postgresql.username=hyku -Dfcrepo.postgresql.password=***REMOVED*** -Dfcrepo.object.directory="/data/objects" -Dfcrepo.binary.directory="/data/fcrepo.binary.directory" -Djava.io.tmpdir="/data/tmp"
networks:
internal:
db:
image: postgres:9.6
env_file:
- .env.production
environment:
- POSTGRES_DB=${DATABASE_NAME}
- POSTGRES_PASSWORD=${DATABASE_PASSWORD}
- POSTGRES_USER=${DATABASE_USER}
volumes:
- ./pg:/var/lib/postgresql/data
networks:
internal:
web:
<<: *app
environment:
- VIRTUAL_PORT=3000
- VIRTUAL_HOST=hyku.test
depends_on:
- check_volumes
- db
- solr
- fcrepo
- redis
- zoo1
- chrome
- initialize_app
- worker
expose:
- 3000
ports:
- 3000:3000
worker:
<<: *app
image: registry.gitlab.com/notch8/britishlibrary/worker:${TAG:-latest}
build:
context: .
target: hyku-worker
args:
- HYKU_BULKRAX_ENABLED=true
command: clamd && bundle exec sidekiq
depends_on:
- check_volumes
- db
- solr
- fcrepo
- redis
- zoo1
- initialize_app
# 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"]
command:
- >
solrcloud-upload-configset.sh /app/samvera/hyrax-webapp/solr/config &&
solrcloud-assign-configset.sh &&
SOLR_COLLECTION_NAME=hydra-test solrcloud-assign-configset.sh &&
db-migrate-seed.sh
depends_on:
- db
- solr
- fcrepo
redis:
image: redis:5
command: redis-server
volumes:
- redis:/data
networks:
internal:
chrome:
image: selenium/standalone-chrome:3.141
networks:
internal: