conectados a la red principal, arreglado typo
All checks were successful
Deploy conversation layer / deploy (push) Successful in 16s

This commit is contained in:
2025-06-04 20:06:17 -06:00
parent c2a7558328
commit bc53d568de

View File

@@ -2,25 +2,27 @@ version: '3.9'
services: services:
openwa: openwa:
image: gitea.interno.com/nucleo000/conversation-openwa:latest image: gitea.interno.com/nucleo000/conversation-openwa:latest
container_name: nucleo-whasapp container_name: nucleo-whatsapp
environment: environment:
- WEBHOOK_URL=http://whatsapp-router:3001/webhook - WEBHOOK_URL=http://whatsapp-router:3001/webhook
- PORT=8080 - PORT=8080
# - API_HOST=0.0.0.0
ports: ports:
- "8080:8080" - "8080:8080"
volumes: volumes:
- nucleo_whatsapp_sessions:/sessions - nucleo_whatsapp_sessions:/sessions
networks:
- principal
whatsapp-router: whatsapp-router:
build: ./whatsapp-router build: ./whatsapp-router
image: gitea.interno.com/nucleo000/conversation-whatsapp-router:latest image: gitea.interno.com/nucleo000/conversation-whatsapp-router:latest
container_name: whatsapp-router container_name: whatsapp-router
environment: environment:
# - LLM_AGENT_URL=http://llm-agent:8000
- OPEN_WA_URL=http://openwa:8080 - OPEN_WA_URL=http://openwa:8080
ports: ports:
- "3001:3001" - "3001:3001"
networks:
- principal
chat-ui: chat-ui:
build: ./chat-ui build: ./chat-ui
@@ -30,6 +32,12 @@ services:
- LLM_AGENT_URL=http://llm-agent:8000 - LLM_AGENT_URL=http://llm-agent:8000
ports: ports:
- "3015:3000" - "3015:3000"
networks:
- principal
volumes: volumes:
nucleo_whatsapp_sessions: nucleo_whatsapp_sessions:
networks:
principal:
external: true