-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
92 lines (91 loc) · 2.11 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
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
version: "3.9"
services:
antibodies:
image: public.ecr.aws/h7r1e4h2/antibodies:latest
env_file:
- .env
chemical-interactions:
image: public.ecr.aws/h7r1e4h2/chemical-interactions:latest
env_file:
- .env
chemical-preview:
image: public.ecr.aws/h7r1e4h2/chemical-preview:latest
env_file:
- .env
chemical-properties:
image: public.ecr.aws/h7r1e4h2/chemical-properties:latest
env_file:
- .env
coordinate-align:
image: public.ecr.aws/h7r1e4h2/coordinate-align:latest
env_file:
- .env
cryoem:
image: public.ecr.aws/h7r1e4h2/cryoem:latest
env_file:
- .env
docking-autodock4:
image: public.ecr.aws/h7r1e4h2/docking-autodock4:latest
env_file:
- .env
command: python run.py --algorithm autodock4
docking-smina:
image: public.ecr.aws/h7r1e4h2/docking-smina:latest
env_file:
- .env
esp:
image: public.ecr.aws/h7r1e4h2/esp:latest
env_file:
- .env
hydrogens:
image: public.ecr.aws/h7r1e4h2/hydrogens:latest
env_file:
- .env
minimization:
image: public.ecr.aws/h7r1e4h2/minimization:latest
env_file:
- .env
superimpose:
image: public.ecr.aws/h7r1e4h2/superimpose-proteins:1.0.0
env_file:
- .env
realtime-scoring:
image: public.ecr.aws/h7r1e4h2/realtime-scoring:latest
env_file:
- .env
rmsd:
image: public.ecr.aws/h7r1e4h2/rmsd:latest
env_file:
- .env
smiles-loader:
image: public.ecr.aws/h7r1e4h2/smiles-loader:latest
env_file:
- .env
structure-prep:
image: public.ecr.aws/h7r1e4h2/structure-prep:latest
env_file:
- .env
vault:
image: public.ecr.aws/h7r1e4h2/vault:latest
env_file:
- .env
# - .env.vault
networks:
- vault-network
command: python run.py --api-key pGmKGvMmatDVzaCTTpnTjdABe
vault-server:
image: public.ecr.aws/h7r1e4h2/vault-server:latest
networks:
- vault-network
ports:
- 80:80
- 443:443
volumes:
- vault-volume:/root
env_file:
- .env
volumes:
vault-volume:
networks:
vault-network:
driver: bridge