-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
62 lines (62 loc) · 1.41 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
version: '3.7'
networks:
dspacenet:
services:
dspace:
container_name: bycovid-harvester
depends_on:
- dspacedb
image: "${DOCKER_OWNER:-dspace}/dspace:${DSPACE_VER:-dspace-6_x-jdk8-test}"
build:
context: .
dockerfile: Dockerfile.jdk8-test
networks:
dspacenet:
ports:
- published: 8080
target: 8080
stdin_open: true
tty: true
volumes:
- ./dspace/src/main/docker-compose/local.cfg:/dspace/config/local.cfg
- ./dspace/src/main/docker-compose/xmlui.xconf:/dspace/config/xmlui.xconf
- assetstore:/dspace/assetstore
- solr_authority:/dspace/solr/authority/data
- solr_oai:/dspace/solr/oai/data
- solr_search:/dspace/solr/search/data
- solr_statistics:/dspace/solr/statistics/data
- xmlshare:/shared
transformer:
container_name: bycovid-transformer
depends_on:
- dspace
build:
context: .
dockerfile: Dockerfile.py3
networks:
dspacenet:
stdin_open: true
tty: true
volumes:
- xmlshare:/shared
command: /bin/bash
dspacedb:
container_name: bycovid-db
environment:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
PGDATA: /pgdata
image: dspace/dspace-postgres-pgcrypto
networks:
dspacenet:
stdin_open: true
tty: true
volumes:
- pgdata:/pgdata
volumes:
assetstore:
pgdata:
solr_authority:
solr_oai:
solr_search:
solr_statistics:
xmlshare: