-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
129 lines (120 loc) · 3.08 KB
/
Copy pathdocker-compose.yml
File metadata and controls
129 lines (120 loc) · 3.08 KB
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
# Example of full workflow orchestration
services:
toolshed-importer:
image: toolshed-importer:latest
# build:
# context: ./toolshed-importer
# dockerfile: Dockerfile
command: ["python", "main.py"]
env_file:
- ./toolshed-importer/.env
volumes:
- ./data:/app/data
restart: "no"
sourceforge-importer:
image: sourceforge-importer:latest
# build:
# context: ./sourceforge-importer
# dockerfile: Dockerfile
command: ["python", "main.py"]
env_file:
- ./sourceforge-importer/.env
volumes:
- ./data:/app/data
restart: "no"
oeb-tools-importer:
image: oeb-tools-importer:latest
# build:
# context: ./oeb-tools-importer
# dockerfile: Dockerfile
command: ["python", "main.py"]
env_file:
- ./oeb-tools-importer/.env
volumes:
- ./data:/app/data
restart: "no"
oeb-metrics-importer:
image: oeb-metrics-importer:latest
# build:
# context: ./oeb-metrics-importer
# dockerfile: Dockerfile
command: ["python", "main.py"]
env_file:
- ./oeb-metrics-importer/.env
volumes:
- ./data:/app/data
restart: "no"
bioconductor-importer:
image: bioconductor-importer:latest
# build:
# context: ./bioconductor-importer
# dockerfile: Dockerfile
command: ["python", "main.py"]
env_file:
- ./bioconductor-importer/.env
volumes:
- ./data:/app/data
restart: "no"
bioconda-importer:
image: bioconda-importer:latest
# build:
# context: ./bioconda-importer
# dockerfile: Dockerfile
command: ["python", "main.py"]
env_file:
- ./bioconda-importer/.env
volumes:
- ./data:/app/data
restart: "no"
rsetl-transformation:
image: rsetl:latest
# build:
# context: ./rsetl
# dockerfile: Dockerfile
command: ["run-transformation"]
env_file:
- ./rsetl/.env
volumes:
- ./data:/app/data
restart: "no"
depends_on:
toolshed-importer:
condition: service_completed_successfully
sourceforge-importer:
condition: service_completed_successfully
oeb-tools-importer:
condition: service_completed_successfully
oeb-metrics-importer:
condition: service_completed_successfully
bioconductor-importer:
condition: service_completed_successfully
bioconda-importer:
condition: service_completed_successfully
github-importer:
image: github-importer:latest
# build:
# context: ./github-importer
# dockerfile: Dockerfile
command: ["python", "main.py"]
env_file:
- ./github-importer/.env
volumes:
- ./data:/app/data
restart: "no"
depends_on:
rsetl-transformation:
condition: service_completed_successfully
rsetl-full:
image: rsetl:latest
# build:
# context: ./rsetl
# dockerfile: Dockerfile
command: ["run"]
env_file:
- ./rsetl/.env
volumes:
- ./data:/app/data
restart: "no"
depends_on:
github-importer:
condition: service_completed_successfully