forked from samvera/hyku
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
168 lines (158 loc) · 3.75 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
version: '2.1'
volumes:
fcrepo:
solr:
db:
redis:
zk1:
zkconf:
app:
assets:
cache:
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
healthcheck:
test: ["CMD-SHELL", "echo 'ruok' | nc -w 2 -q 2 localhost 2181 | grep imok || exit 1"]
interval: "5s"
timeout: "8s"
solr:
image: solr:9.4.1
command: solr -c -f -z zoo1:2181
environment:
- OOM=script
- VIRTUAL_PORT=8983
- VIRTUAL_HOST=localhost
depends_on:
zoo1:
condition: service_healthy
expose:
- 8983
volumes:
- .:/app
- solr:/opt/solr/server/solr
networks:
internal:
ports:
- "8983:8983"
fcrepo:
image: ghcr.io/samvera/fcrepo4:4.7.5
volumes:
- fcrepo:/data:cached
env_file:
- .env
environment:
- JAVA_OPTS=${JAVA_OPTS} -Dfcrepo.modeshape.configuration="classpath:/config/file-simple/repository.json" -Dfcrepo.object.directory="/data/objects" -Dfcrepo.binary.directory="/data/binaries"
- VIRTUAL_PORT=8080
- VIRTUAL_HOST=localhost
expose:
- 8080
ports:
- "8080:8080"
networks:
internal:
db:
image: postgres
env_file:
- .env
environment:
- POSTGRES_DB=${DATABASE_NAME}
- POSTGRES_PASSWORD=${DATABASE_PASSWORD}
- POSTGRES_USER=${DATABASE_USER}
volumes:
- db:/var/lib/postgresql/data
networks:
internal:
app:
build: .
image: hyku/main:latest
env_file:
- .env
# Commands to run on first install:
# bundle exec rails zookeeper:upload
# rails db:migrate
environment:
- 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__FITS_PATH=/opt/fits/fits.sh
# Comment out these 5 for single tenancy / Uncomment for multi
- SETTINGS__MULTITENANCY__ADMIN_HOST=localhost
- SETTINGS__MULTITENANCY__ADMIN_ONLY_TENANT_CREATION=false
- SETTINGS__MULTITENANCY__DEFAULT_HOST=%{tenant}.localhost
- SETTINGS__MULTITENANCY__ROOT_HOST=localhost
- SETTINGS__MULTITENANCY__ENABLED=true
# Comment out these 2 for multi tenancy / Uncomment for single
# You may also need to change the SOLR_URL in your .env file and/or
# create a new Solr collection
# - SETTINGS__MULTITENANCY__ROOT_HOST=localhost
# - SETTINGS__MULTITENANCY__ENABLED=false
- SETTINGS__ZOOKEEPER__CONNECTION_STR=zookeeper_cluster:2181/configs
- PASSENGER_APP_ENV=development
volumes:
- app:/home/app/webapp/tmp/uploads
- assets:/home/app/webapp/public/assets
- cache:/home/app/webapp/tmp/cache
- .:/home/app/webapp
# - ~/Vault:/home/app/webapp
networks:
internal:
web:
extends:
service: app
depends_on:
- db
- solr
- fcrepo
- redis
- zoo1
- workers
expose:
- 80
ports:
- 3000:3000
stdin_open: true
tty: true
volumes:
- .:/home/app/webapp:consistent
# - ~/Vault:/home/app/webapp:consistent
workers:
extends:
service: app
command: bundle exec sidekiq
depends_on:
- db
- solr
- fcrepo
- redis
- zoo1
redis:
image: redis:7.0.4
command: redis-server
volumes:
- redis:/data
networks:
internal:
# chrome:
# image: selenium/standalone-chrome:3.141
# networks:
# internal: