forked from openvar/rest_variantValidator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
60 lines (58 loc) · 1.07 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
version: '3'
services:
vdb:
build:
context: .
dockerfile: vdb_docker.df
ports:
- "33061:3306"
expose:
- "33061"
vvta:
build:
context: .
dockerfile: vvta_docker.df
ports:
- "54321:5432"
expose:
- "54321"
seqrepo:
build:
context: .
dockerfile: vvsr_docker.df
volumes:
- seqdata:/usr/local/share/seqrepo
restvv:
build: .
depends_on:
- vdb
- vvta
volumes:
- logs:/usr/local/share/logs
- seqdata:/usr/local/share/seqrepo
- share:/usr/local/share
ports:
- "5000:5000"
- "8000:8000"
expose:
- "5000"
- "8000"
volumes:
share:
driver: local
driver_opts:
type: 'none'
o: 'bind'
device: '${HOME}/variantvalidator_data/share'
seqdata:
driver: local
driver_opts:
type: 'none'
o: 'bind'
device: '${HOME}/variantvalidator_data/share/seqrepo'
logs:
driver: local
driver_opts:
type: 'none'
o: 'bind'
device: '${HOME}/variantvalidator_data/share/logs'