-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
184 lines (173 loc) · 3.74 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
# Requires Docker Compose v2
name: dlp-selfdeposit
services:
app: &app
build:
context: .
dockerfile: Dockerfile
target: hyrax
entrypoint: ./scripts/entrypoint.sh
command: sh -c 'bundle exec puma -v -b tcp://0.0.0.0:3000'
stdin_open: true
tty: true
user: root
env_file:
- .env.development
depends_on:
- chrome
- db_migrate
- memcached
- postgres
- redis
- solr
ports:
- 3000:3000
volumes:
- .:/app
- ./public:/app/public
- bundle:/app/bundle
- hyrax-storage:/app/storage
- hyrax-derivatives:/app/derivatives
- hyrax-uploads:/app/uploads
- rails-tmp:/app/tmp
networks:
- dlp
sidekiq:
build:
context: .
dockerfile: Dockerfile
target: hyrax-worker
entrypoint: ./scripts/entrypoint.sh
command: sh -c 'bundle exec sidekiq'
user: root
stdin_open: true
tty: true
env_file:
- .env.development
depends_on:
- db_migrate
- memcached
- postgres
- redis
- solr
volumes:
- .:/app
- bundle:/app/bundle
- hyrax-storage:/app/storage
- hyrax-derivatives:/app/derivatives
- hyrax-uploads:/app/uploads
- rails-public:/app/public
- rails-tmp:/app/tmp
networks:
- dlp
db_migrate:
build:
context: .
dockerfile: Dockerfile
target: hyrax
entrypoint: ./scripts/entrypoint.sh
user: root
env_file:
- .env.development
command: ./scripts/db-migrate-seed.sh
depends_on:
- postgres
- solr
volumes:
- .:/app
- bundle:/app/bundle
- rails-public:/app/public
- rails-tmp:/app/tmp
networks:
- dlp
chrome:
image: seleniarm/standalone-chromium:114.0
environment:
- START_XVFB=false
logging:
driver: none
volumes:
- /dev/shm:/dev/shm
shm_size: 2G
ports:
- "4447:4444"
- "5962:5900"
networks:
- dlp
postgres:
image: postgres:15
env_file:
- .env.development
ports:
- "5432:5432"
volumes:
- postgres:/var/lib/postgresql/data
networks:
- dlp
fcrepo:
image: fcrepo/fcrepo:6.5.0-tomcat9
environment:
- >-
CATALINA_OPTS=-Dfcrepo.home=/fcrepo-home -Djava.awt.headless=true -Dfile.encoding=UTF-8
-server -Xms512m -Xmx1024m -XX:NewSize=256m -XX:MaxNewSize=256m -XX:PermSize=256m
-XX:MaxPermSize=256m -XX:+DisableExplicitGC -Dorg.apache.tomcat.util.buf.UDecoder.ALLOW_ENCODED_SLASH=true
- JAVA_OPTS=-Dorg.apache.tomcat.util.buf.UDecoder.ALLOW_ENCODED_SLASH=true
volumes:
- fcrepo:/fcrepo-home
ports:
- 8080:8080
networks:
- dlp
fits:
image: ghcr.io/samvera/fitsservlet:1.6.0
ports:
- 9082:8080
networks:
- dlp
memcached:
image: bitnami/memcached
ports:
- '11213:11211'
networks:
- dlp
redis:
image: bitnami/redis:6.2
env_file:
- .env.development
volumes:
- redis:/bitnami/redis/data
networks:
- dlp
solr:
image: solr:8.11
ports:
- 8983:8983
command:
- sh
- "-c"
- "precreate-core dlp-selfdeposit-test /opt/solr/server/configsets/hyraxconf; solr-precreate dlp-selfdeposit /opt/solr/server/configsets/hyraxconf"
volumes:
- solr:/var/solr/data:cached
- ./solr/conf:/opt/solr/server/configsets/hyraxconf
ulimits:
nofile:
soft: 65536
hard: 524288
networks:
- dlp
volumes:
bundle:
postgres:
fcrepo:
redis:
solr:
hyrax-storage:
hyrax-derivatives:
hyrax-uploads:
rails-public:
rails-tmp:
networks:
dlp:
driver: bridge
driver_opts:
com.docker.network.bridge.name: br-dlp