-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose-crawlers.yml
222 lines (221 loc) · 4.53 KB
/
docker-compose-crawlers.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
# Quick way to be able to build all the images with the command below. Do not use docker-compose up.
# docker-compose -f docker-compose-crawlers.yml build --no-cache
# MAKE SURE WHEN YOU NAME YOUR CRAWLER SERVICE THAT IT MATCHES SRC_NAME IN YOUR DUMPER CLASS BIOTHINGS_HUB. Example: "SRC_NAME-crawler"
version: '3'
services:
# when updating changes to code: "docker-compose -f docker-compose-crawlers.yml build --no-cache dde-crawler"
acd_niaid-crawler:
build:
context: acd_niaid
dockerfile: Dockerfile
volumes:
- data:/data
bioconductor-crawler:
build:
context: bioconductor
dockerfile: Dockerfile
volumes:
- data:/data
biocontainers-crawler:
build:
context: biocontainers
dockerfile: Dockerfile
volumes:
- data:/data
biotools-crawler:
build:
context: biotools
dockerfile: Dockerfile
volumes:
- data:/data
clinepidb-crawler:
build:
context: clinepidb
dockerfile: Dockerfile
volumes:
- data:/data
covid_radx-crawler:
build:
context: covid_radx
dockerfile: Dockerfile
volumes:
- data:/data
dash-crawler:
build:
context: dash
dockerfile: Dockerfile
volumes:
- data:/data
dataverse-crawler:
build:
context: dataverse
dockerfile: Dockerfile
volumes:
- data:/data
- cache:/cache
dbgap-crawler:
build:
context: dbgap
dockerfile: Dockerfile
volumes:
- data:/data
dde-crawler:
build:
context: dde_niaid
dockerfile: Dockerfile
volumes:
- data:/data
dockstore-crawler:
build:
context: dockstore
dockerfile: Dockerfile
volumes:
- data:/data
dryad-crawler:
build:
context: dryad_crawler
dockerfile: Dockerfile
volumes:
- data:/data
figshare-crawler:
build:
context: figshare_oai-pmh
dockerfile: Dockerfile
volumes:
- data:/data
- cache:/cache
flowrepository-crawler:
build:
context: flowrepository_crawler
dockerfile: Dockerfile
volumes:
- data:/data
hca-crawler:
build:
context: hca
dockerfile: Dockerfile
volumes:
- data:/data
hubmap-crawler:
build:
context: hubmap
dockerfile: Dockerfile
volumes:
- data:/data
immport-crawler:
build:
context: immport
dockerfile: Dockerfile
volumes:
- data:/data
lincs-crawler:
build:
context: lincs
dockerfile: Dockerfile
volumes:
- data:/data
malariagen-crawler:
build:
context: malariagen_crawler
dockerfile: Dockerfile
volumes:
- data:/data
massive-crawler:
build:
context: massive
dockerfile: Dockerfile
volumes:
- data:/data
mendeley-crawler:
build:
context: mendeley
dockerfile: Dockerfile
volumes:
- data:/data
- cache:/cache
microbiomedb-crawler:
build:
context: microbiomedb
dockerfile: Dockerfile
volumes:
- data:/data
ncbi_pmc-crawler:
build:
context: ncbi_pmc_oai-pmh
dockerfile: Dockerfile
volumes:
- data:/data
- cache:/cache
ncbi_sra-crawler:
build:
context: ncbi_sra
dockerfile: Dockerfile
args:
buildtime_variable: ${NCBI_API_KEY}
volumes:
- data:/data
- cache:/cache
ndex-crawler:
build:
context: ndex
dockerfile: Dockerfile
volumes:
- data:/data
qiita-crawler:
build:
context: qiita
dockerfile: Dockerfile
volumes:
- data:/data
reframedb-crawler:
build:
context: reframedb
dockerfile: Dockerfile
volumes:
- data:/data
sb_apps-crawler:
build:
context: sb_apps
dockerfile: Dockerfile
volumes:
- data:/data
vdj-crawler:
build:
context: vdj
dockerfile: Dockerfile
volumes:
- data:/data
veupath_collections-crawler:
build:
context: veupath_collections
dockerfile: Dockerfile
volumes:
- data:/data
veupathdb-crawler:
build:
context: veupathdb
dockerfile: Dockerfile
volumes:
- data:/data
vivli-crawler:
build:
context: vivli
dockerfile: Dockerfile
volumes:
- data:/data
workflowhub-crawler:
build:
context: workflowhub
dockerfile: Dockerfile
volumes:
- data:/data
zenodo-crawler:
build:
context: zenodo_oai-pmh
dockerfile: Dockerfile
volumes:
- data:/data
- cache:/cache
volumes:
data:
cache: