All checks were successful
Deploy conversation layer / deploy (push) Successful in 6s
36 lines
905 B
YAML
36 lines
905 B
YAML
version: '3.9'
|
|
services:
|
|
openwa:
|
|
image: gitea.interno.com/nucleo000/conversation-openwa:latest
|
|
container_name: nucleo-whasapp
|
|
environment:
|
|
- WEBHOOK_URL=http://whatsapp-router:3001/webhook
|
|
- PORT=8080
|
|
# - API_HOST=0.0.0.0
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- nucleo_whatsapp_sessions:/sessions
|
|
|
|
whatsapp-router:
|
|
build: ./whatsapp-router
|
|
image: gitea.interno.com/nucleo000/conversation-whatsapp-router:latest
|
|
container_name: whatsapp-router
|
|
environment:
|
|
# - LLM_AGENT_URL=http://llm-agent:8000
|
|
- OPEN_WA_URL=http://openwa:8080
|
|
ports:
|
|
- "3001:3001"
|
|
|
|
chat-ui:
|
|
build: ./chat-ui
|
|
image: gitea.interno.com/nucleo000/conversation-chat-ui:latest
|
|
container_name: conversation-chat-ui
|
|
environment:
|
|
- LLM_AGENT_URL=http://llm-agent:8000
|
|
ports:
|
|
- "3015:3000"
|
|
|
|
volumes:
|
|
nucleo_whatsapp_sessions:
|