feat: containerize agent fleet for sovereign reproducibility

This commit is contained in:
Ezra
2026-04-10 12:05:11 +00:00
parent 0d36f97fb9
commit e95f48b195
3 changed files with 104 additions and 0 deletions

44
docker-compose.yml Normal file
View File

@@ -0,0 +1,44 @@
version: "3.8"
services:
ezra:
build:
context: .
dockerfile: docker/agent.Dockerfile
container_name: wizard-ezra
ports:
- "8643:8643"
volumes:
- /root/wizards/ezra/.hermes:/root/.hermes
- /root/wizards/ezra/models:/app/models
environment:
- WIZARD_NAME=ezra
restart: always
bezalel:
build:
context: .
dockerfile: docker/agent.Dockerfile
container_name: wizard-bezalel
ports:
- "8644:8643"
volumes:
- /root/wizards/bezalel/.hermes:/root/.hermes
- /root/wizards/bezalel/models:/app/models
environment:
- WIZARD_NAME=bezalel
restart: always
allegro:
build:
context: .
dockerfile: docker/agent.Dockerfile
container_name: wizard-allegro
ports:
- "8645:8643"
volumes:
- /root/wizards/allegro/.hermes:/root/.hermes
- /root/wizards/allegro/models:/app/models
environment:
- WIZARD_NAME=allegro
restart: always