-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.rh-swarm.yml
More file actions
59 lines (53 loc) · 1.19 KB
/
Copy pathdocker-compose.rh-swarm.yml
File metadata and controls
59 lines (53 loc) · 1.19 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
version: '3.8'
services:
# The Nervous System (Internal Communication)
message_bus:
image: gpia-core:latest
container_name: gpia_bus
command: python bus_server.py
networks:
- gpia_net
# The Librarian & Master Orchestrator
librarian:
image: gpia-core:latest
container_name: gpia_librarian
volumes:
- .:/app
- ./data/dense_states:/app/data/dense_states
environment:
- SESSION_ID=rh_swarm_2026
command: python rh_swarm_master.py
depends_on:
- message_bus
networks:
- gpia_net
# Sub-Agent: The Mathematical Miner (Alpha)
agent_alpha:
image: gpia-core:latest
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
volumes:
- .:/app
command: python rh_sub_agent.py --role miner
depends_on:
- message_bus
networks:
- gpia_net
# Sub-Agent: The Proof Critic (Beta)
agent_beta:
image: gpia-core:latest
volumes:
- .:/app
command: python rh_sub_agent.py --role critic
depends_on:
- message_bus
networks:
- gpia_net
networks:
gpia_net:
driver: bridge