agent-system/docker-compose.yml

16 lines
246 B
YAML
Raw Normal View History

2026-04-30 21:15:28 +02:00
services:
redis:
image: redis:7
ports:
- "6379:6379"
restart: unless-stopped
orchestrator:
build: ./orchestrator
depends_on:
- redis
environment:
REDIS_HOST: redis
stdin_open: true
tty: true