feat: containerize agent fleet for sovereign reproducibility
This commit is contained in:
44
docker-compose.yml
Normal file
44
docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user