-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
59 lines (58 loc) · 1.17 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
services:
unbscholar.lib.unb.ca:
build:
args:
BUILD_CMD: ''
NODE_ENV: development
context: .
target: builder
restart: unless-stopped
container_name: unbscholar.lib.unb.ca
env_file:
- env/common.env
- env/angular.env
volumes:
- ./build/src:/build/src
expose:
- "4000"
networks:
- unbscholar.lib.unb.ca
ports:
- "9988:4000"
unbscholar.dspace.lib.unb.ca:
build:
context: local/dspace/
restart: unless-stopped
env_file:
- env/common.env
- env/dspace.env
expose:
- "8080"
ports:
- "9989:8080"
networks:
- unbscholar.lib.unb.ca
unbscholar-postgres-lib-unb-ca:
build:
context: local/postgres/
restart: unless-stopped
env_file:
- ./env/common.env
- ./env/postgres.env
expose:
- "5432"
networks:
- unbscholar.lib.unb.ca
unbscholar-solr-lib-unb-ca:
build:
context: local/solr/
restart: unless-stopped
env_file:
- env/common.env
expose:
- "8983"
networks:
- unbscholar.lib.unb.ca
networks:
unbscholar.lib.unb.ca:
name: unbscholar.lib.unb.ca