forked from samvera/hyku
-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
175 lines (161 loc) · 3.69 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
version: '2'
volumes:
fcrepo:
solr:
db:
redis:
zk1:
zkconf:
app:
assets:
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:/data
- zkconf:/conf
networks:
internal:
aliases:
- zookeeper_cluster
solr:
image: solr:7.5
command: solr -c -f -z zoo1:2181
depends_on:
- zoo1
expose:
- 8983
volumes:
- .:/app
- solr:/opt/solr/server/solr
networks:
internal:
fcrepo:
image: cbeer/fcrepo4:4.7
env_file:
- .env
expose:
- 8080
volumes:
- fcrepo:/data
environment:
- JAVA_OPTS=${JAVA_OPTS} -Dfcrepo.modeshape.configuration="classpath:/config/file-simple/repository.json" -Dfcrepo.object.directory="/data/objects" -Dfcrepo.binary.directory="/data/binaries"
networks:
internal:
db:
image: postgres:11.1
env_file:
- .env
environment:
- POSTGRES_DB=${DATABASE_NAME}
- POSTGRES_PASSWORD=${DATABASE_PASSWORD}
- POSTGRES_USER=${DATABASE_USER}
volumes:
- db:/var/lib/postgresql/data
networks:
internal:
base:
image: hyku/base:latest
build:
context: .
dockerfile: Dockerfile.base
env_file:
- .env
app:
build: .
image: hyku/main:latest
env_file:
- .env
environment:
- FEDORA_URL=http://fcrepo:8080/fcrepo/rest
- IN_DOCKER=true
- LD_LIBRARY_PATH=/opt/fits/tools/mediainfo/linux
- RAILS_LOG_TO_STDOUT=true
- REDIS_HOST=redis
- SECRET_KEY_BASE=asdf
- SETTINGS__ACTIVE_JOB__QUEUE_ADAPTER=sidekiq
- SETTINGS__BULKRAX__ENABLED=false
- SETTINGS__FITS_PATH=/opt/fits/fits.sh
# Comment out these 5 for single tenancy / Uncomment for multi
- SETTINGS__MULTITENANCY__ADMIN_HOST=hyku.docker
- SETTINGS__MULTITENANCY__ADMIN_ONLY_TENANT_CREATION=false
- SETTINGS__MULTITENANCY__DEFAULT_HOST=%{tenant}.hyku.docker
- SETTINGS__MULTITENANCY__ROOT_HOST=hyku.docker
- SETTINGS__MULTITENANCY__ENABLED=true
# Comment out these 2 for multi tenancy / Uncomment for single
# - SETTINGS__MULTITENANCY__ROOT_HOST=hyku.docker
# - SETTINGS__MULTITENANCY__ENABLED=false
- SETTINGS__SOLR__URL=http://solr:8983/solr/
- SETTINGS__ZOOKEEPER__CONNECTION_STR=zookeeper_cluster:2181/configs
- SOLR_URL=http://solr:8983/solr/
- PASSENGER_APP_ENV=development
- RAILS_ENV=development
volumes:
- app:/home/app/webapp/tmp/uploads
- assets:/home/app/webapp/public/assets
- .:/home/app/webapp
networks:
internal:
web:
extends:
service: app
environment:
- VIRTUAL_PORT=80
- VIRTUAL_HOST=hyku.docker
depends_on:
- db
- solr
- fcrepo
- redis
- zoo1
- chrome
- initialize_app
- db_migrate
expose:
- 80
# ports:
# 3000:80 # uncomment this if you dont use dory or another proxy
workers:
extends:
service: app
command: bundle exec sidekiq
depends_on:
- db
- solr
- fcrepo
- redis
- zoo1
- initialize_app
- db_migrate
initialize_app:
extends:
service: app
command: bundle exec rails zookeeper:upload
depends_on:
- zoo1
db_migrate:
extends:
service: app
command: bundle exec rails db:migrate
depends_on:
- db
redis:
image: redis:3
command: redis-server
volumes:
- redis:/data
networks:
internal:
chrome:
image: selenium/standalone-chrome:3.141
networks:
internal: