forked from samvera/hydra-derivatives
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
46 lines (40 loc) · 766 Bytes
/
docker-compose.yml
File metadata and controls
46 lines (40 loc) · 766 Bytes
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
version: '2.2'
volumes:
solr:
fcrepo:
networks:
internal:
services:
solr:
image: solr:8
ports:
- 8985:8983
command:
- bash
- "-c"
- "precreate-core hydra-test /opt/solr/server/configsets/hydra-test; exec solr -f"
volumes:
- .:/app
- ./solr/config:/opt/solr/server/configsets/hydra-test
- solr:/opt/solr/server/solr
networks:
internal:
fcrepo:
image: ghcr.io/samvera/fcrepo4:4.7.5
volumes:
- fcrepo:/data:cached
ports:
- 8986:8080
networks:
internal:
test:
build: .
env_file:
- test.env
volumes:
- .:/app/samvera/hydra-derivatives # Volume mounted
networks:
internal:
depends_on:
- fcrepo
- solr