forked from irods/irods_demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
129 lines (120 loc) · 2.82 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
version: '3'
services:
irods-catalog-provider:
build:
context: irods
dockerfile: Dockerfile
hostname: icat.example.org
ports:
- "1247:1247"
- "1248:1248"
- "20000-20199:20000-20199"
networks:
default:
aliases:
- icat.example.org
irods-client:
build:
context: irods-client
dockerfile: Dockerfile
hostname: client.example.org
networks:
default:
aliases:
- client.example.org
irods-audit-elk-stack:
image: irods/irods_audit_elk_stack:latest
hostname: irods-audit-elastic-stack.example.org
ports:
- "15672:15672"
- "5672:5672"
- "5601:5601"
- "9200:9200"
networks:
default:
aliases:
- irods-audit-elastic-stack.example.org
volumes:
- "./audit/entrypoint.sh:/audit/entrypoint.sh:ro"
entrypoint: /audit/entrypoint.sh
irods-automated-ingest:
build:
context: ingest
dockerfile: Dockerfile
hostname: irods-ingest.example.org
networks:
default:
aliases:
- irods-ingest.example.org
volumes:
- "/tmp/landing_zone:/tmp/landing_zone:rw"
- "/tmp/ingested:/tmp/ingested:rw"
depends_on:
- irods-catalog-provider
irods-nfsrods:
build:
context: nfsrods
dockerfile: Dockerfile
hostname: irods-nfsrods.example.org
networks:
default:
aliases:
- irods-nfsrods.example.org
depends_on:
- irods-catalog-provider
ports:
- "2049:2049"
volumes:
- "./nfsrods/nfsrods_config:/nfsrods_config:ro"
- "/etc/passwd:/etc/passwd:ro"
irods-metalnx:
#image: irods/metalnx
build:
context: metalnx
dockerfile: Dockerfile
hostname: irods-metalnx.example.org
ports:
- "8080:8080"
volumes:
- "./metalnx/mylocal-irods-ext:/etc/irods-ext"
networks:
default:
aliases:
- irods-metalnx.example.org
depends_on:
- irods-metalnx-db
irods-metalnx-db:
build:
context: metalnx-db
dockerfile: Dockerfile
hostname: irods-metalnx-db.example.org
ports:
- "5432:5432"
networks:
default:
aliases:
- irods-metalnx-db.example.org
irods-davrods:
build:
context: davrods
dockerfile: Dockerfile
hostname: irods-davrods.example.org
ports:
- "80:80"
networks:
default:
aliases:
- irods-davrods.example.org
#irods-rest:
#image: diceunc/rest
#hostname: irods-rest.example.org
#networks:
#default:
#aliases:
#- irods-rest.example.org
#volumes:
#- "./irods-rest/irods-rest.properties:/etc/irods-ext/irods-rest.properties:ro"
#ports:
#- "8080:8080"
#depends_on:
#- irods-catalog-provider