Add conversation layer services and compose setup

This commit is contained in:
josedario87
2025-06-04 18:45:25 -06:00
parent 0004be3c09
commit ca2384552c
13 changed files with 2064 additions and 1 deletions

30
docker-compose.yml Normal file
View File

@@ -0,0 +1,30 @@
version: '3.9'
services:
openwa:
image: openwa/wa-automate
environment:
- WEBHOOK_URL=http://whatsapp-router:3001/webhook
- PORT=8080
- API_HOST=0.0.0.0
ports:
- "8080:8080"
volumes:
- openwa_data:/usr/src/app/session
whatsapp-router:
build: ./whatsapp-router
environment:
- LLM_AGENT_URL=http://llm-agent:8000
- OPEN_WA_URL=http://openwa:8080
ports:
- "3001:3001"
chat-ui:
build: ./chat-ui
environment:
- LLM_AGENT_URL=http://llm-agent:8000
ports:
- "3000:3000"
volumes:
openwa_data: