-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose-cdcgov-all.yml
70 lines (60 loc) · 1.23 KB
/
docker-compose-cdcgov-all.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
x-multiqc-image:
&multiqc-image
cdcgov/multiqc:v1.19-alpine
x-fastqc-image:
&fastqc-image
cdcgov/fastqc:v0.12.1-alpine
x-bbtools-image:
&bbtools-image
cdcgov/bbtools:v39.01-alpine
x-cutadapt-image:
&cutadapt-image
cdcgov/cutadapt:v4.4-alpine
x-mira-nf-image:
&mira-nf-image
cdcgov/mira-nf:python3.10-alpine
x-data-volume:
&data-volume
type: bind
source: /home/snu3/Github/FLU_SC2_SEQUENCING
target: /data
services:
multiqc:
container_name: multiqc
image: *multiqc-image
restart: always
volumes:
- *data-volume
command: tail -f /dev/null
fastqc:
container_name: fastqc
image: *fastqc-image
restart: always
volumes:
- *data-volume
command: tail -f /dev/null
bbtools:
container_name: bbtools
image: *bbtools-image
volumes:
- *data-volume
command: tail -f /dev/null
cutadapt:
container_name: cutadapt
image: *cutadapt-image
restart: always
volumes:
- *data-volume
command: tail -f /dev/null
mira-nf:
container_name: mira-nf
image: *mira-nf-image
depends_on:
- multiqc
- fastqc
- bbtools
- cutadapt
restart: always
volumes:
- *data-volume
command: tail -f /dev/null