-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
104 lines (97 loc) · 2.42 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
version: '2'
services:
icat-db:
build: ./postgres
# restart: unless-stopped
expose:
- "5432"
irods-icat:
build: ./irods-icat
hostname: irods-icat
# restart: unless-stopped
volumes:
- /dev/urandom:/dev/random
# - demo-irods-icat-config:/etc/irods
# - demo-irods-icat-logs:/var/lib/irods/iRODS/server/log
environment:
- IRODS_ICAT_DBSERVER=icat-db
- IRODS_ZONE_PORT=1247
- IRODS_ZONE_NAME=demo
- IRODS_WEBDAV_HOST=irods-webdav
- IRODS_RESOURCE_OL=irods-resc-ol
- IRODS_RESOURCE_NL=irods-resc-nl
ports:
- 1247:1247
- 20000-20199:20000-20199
depends_on:
- icat-db
irods-resc-ol:
build: ./irods-resc
hostname: irods-resc-ol
# restart: unless-stopped
volumes:
- /dev/urandom:/dev/random
# - demo-irods-resc-ol-config:/etc/irods
# - demo-irods-resc-ol-logs:/var/lib/irods/iRODS/server/log
# - demo-irods-resc-ol-vault:/var/lib/irods/Vault
environment:
- IRODS_ICAT_HOST=irods-icat
- IRODS_ZONE_PORT=1247
- IRODS_ZONE_NAME=demo
expose:
- "1247"
- "20000-20199"
depends_on:
- irods-icat
irods-resc-nl:
build: ./irods-resc
hostname: irods-resc-nl
# restart: unless-stopped
volumes:
- /dev/urandom:/dev/random
# - demo-irods-resc-nl-config:/etc/irods
# - demo-irods-resc-nl-logs:/var/lib/irods/iRODS/server/log
# - demo-irods-resc-nl-vault:/var/lib/irods/Valut
environment:
- IRODS_ICAT_HOST=irods-icat
- IRODS_ZONE_PORT=1247
- IRODS_ZONE_NAME=demo
expose:
- "1247"
- "20000-20199"
depends_on:
- irods-icat
irods-webdav:
build: ./davrods
hostname: irods-webdav
# restart: unless-stopped
volumes:
- /dev/urandom:/dev/random
- ./davrods/config:/config
environment:
- IRODS_ICAT_HOST=irods-icat
- IRODS_ZONE_PORT=1247
- IRODS_ZONE_NAME=demo
ports:
- 443:443
depends_on:
- irods-icat
#volumes:
# demo-irods-icat-config:
# external: true
# demo-irods-icat-logs:
# external: true
# demo-irods-resc-ol-config:
# external: true
# demo-irods-resc-ol-logs:
# external: true
# demo-irods-resc-ol-vault:
# external: true
# demo-irods-resc-nl-config:
# external: true
# demo-irods-resc-nl-logs:
# external: true
# demo-irods-resc-nl-vault:
# external: true
# demo-postgres-data:
# external: true