-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcompose.yaml
More file actions
37 lines (35 loc) · 884 Bytes
/
Copy pathcompose.yaml
File metadata and controls
37 lines (35 loc) · 884 Bytes
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
name: study-agent
services:
mcp-server:
build:
context: .
image: study-agent
env_file:
- .env
environment:
STUDY_AGENT_HOST_GATEWAY: host.docker.internal
extra_hosts:
- "host.docker.internal:host-gateway"
ports:
- "8790:8790"
volumes:
- ./data/phenotype_index:/data/phenotype_index
command: ["micromamba", "run", "-n", "base", "study-agent-mcp"]
restart: unless-stopped
acp-agent:
build:
context: .
image: study-agent
env_file:
- .env
environment:
STUDY_AGENT_HOST_GATEWAY: host.docker.internal
STUDY_AGENT_MCP_URL: http://mcp-server:8790/mcp
extra_hosts:
- "host.docker.internal:host-gateway"
ports:
- "8765:8765"
depends_on:
- mcp-server
command: ["micromamba", "run", "-n", "base", "study-agent-acp"]
restart: unless-stopped