44 lines
943 B
YAML
44 lines
943 B
YAML
version: '3.9'
|
|
services:
|
|
openwa:
|
|
image: gitea.interno.com/nucleo000/nucleo-whatsapp:latest
|
|
container_name: nucleo-whatsapp
|
|
environment:
|
|
- PORT=8080
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- nucleo_whatsapp_sessions:/sessions
|
|
networks:
|
|
- principal
|
|
|
|
whatsapp-router:
|
|
build: ./whatsapp-router
|
|
image: gitea.interno.com/nucleo000/whatsapp-router:latest
|
|
container_name: whatsapp-router
|
|
environment:
|
|
- OPEN_WA_URL=http://openwa:8080
|
|
- LLM_AGENT_URL=http://llm-agent:8000
|
|
ports:
|
|
- "3001:3001"
|
|
networks:
|
|
- principal
|
|
|
|
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"
|
|
networks:
|
|
- principal
|
|
|
|
volumes:
|
|
nucleo_whatsapp_sessions:
|
|
|
|
networks:
|
|
principal:
|
|
external: true
|