Files
fleet-ops/docker-compose.yml

45 lines
991 B
YAML

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