-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
58 lines (53 loc) · 1.09 KB
/
docker-compose.yml
File metadata and controls
58 lines (53 loc) · 1.09 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
version: '3.8'
services:
opentargets-mcp:
build:
context: ./modules/OpenTargets-MCP
dockerfile: Dockerfile
ports:
- "5001:5000"
volumes:
- ./data/opentargets:/data
- ./logs/opentargets:/logs
environment:
- MCP_PORT=5000
- LOG_LEVEL=INFO
chembl-mcp:
build:
context: ./modules/ChemBL-MCP
dockerfile: Dockerfile
ports:
- "5002:5000"
volumes:
- ./data/chembl:/data
- ./logs/chembl:/logs
environment:
- MCP_PORT=5000
- LOG_LEVEL=INFO
pubchem-mcp:
build:
context: ./modules/PubChem-MCP
dockerfile: Dockerfile
ports:
- "5003:5000"
volumes:
- ./data/pubchem:/data
- ./logs/pubchem:/logs
environment:
- MCP_PORT=5000
- LOG_LEVEL=INFO
uniprot-mcp:
build:
context: ./modules/UniProt-MCP
dockerfile: Dockerfile
ports:
- "5004:5000"
volumes:
- ./data/uniprot:/data
- ./logs/uniprot:/logs
environment:
- MCP_PORT=5000
- LOG_LEVEL=INFO
networks:
default:
name: biocontext-network