-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-apps.yml
More file actions
95 lines (89 loc) · 2.42 KB
/
docker-compose-apps.yml
File metadata and controls
95 lines (89 loc) · 2.42 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
version: '3.3'
services:
subcons:
image: nanjiang/subcons
container_name: subcons
environment:
- USER_ID=${USER_ID}
volumes:
- ${DATA_DIR}:/data
- ${SCRATCH_DIR}:/scratch
- ${WEB_STATIC}:/static
restart: always
stdin_open: true
tty: true
topcons2:
image: nanjiang/topcons2
container_name: topcons2
environment:
- USER_ID=${USER_ID}
volumes:
- ${DATA_DIR}:/data
- ${SCRATCH_DIR}:/scratch
- ${WEB_STATIC}:/static
restart: always
stdin_open: true
tty: true
proq3:
image: nanjiang/proq3
container_name: proq3
environment:
- USER_ID=${USER_ID}
volumes:
- ${BLASTDB_DIR}:/app/proq3/database/blastdb
- ${ROSETTA_DIR}:/app/proq3/apps/rosetta
- ${SCRATCH_DIR}:/scratch
- ${WEB_STATIC}:/static
restart: always
stdin_open: true
tty: true
boctopus2:
image: nanjiang/boctopus2
container_name: boctopus2
environment:
- USER_ID=${USER_ID}
volumes:
- ${DATA_DIR}:/data
- ${SCRATCH_DIR}:/scratch
- ${WEB_STATIC}:/static
restart: always
stdin_open: true
tty: true
pathopred:
image: nanjiang/pathopred
container_name: pathopred
environment:
- USER_ID=${USER_ID}
volumes:
- ${BLASTDB_DIR}:/blastdb
- ${SCRATCH_DIR}:/scratch
- ${WEB_STATIC}:/static
restart: always
stdin_open: true
tty: true
predzinc:
image: nanjiang/predzinc
container_name: predzinc
environment:
- USER_ID=${USER_ID}
volumes:
- ${DATA_DIR}:/data
- ${DATA_DIR}/db_predzinc:/app/predzinc/data
- ${SCRATCH_DIR}:/scratch
- ${WEB_STATIC}:/static
restart: always
stdin_open: true
tty: true
frag1d:
image: nanjiang/frag1d
container_name: frag1d
environment:
- USER_ID=${USER_ID}
volumes:
- ${DATA_DIR}:/data
- ${DATA_DIR}/db_frag1d:/app/frag1d/data
- ${SCRATCH_DIR}:/scratch
- ${WEB_STATIC}:/static
restart: always
stdin_open: true
tty: true