From a160b1aee359a8c7a4d6b2ac0bfd9ec1201e79cb Mon Sep 17 00:00:00 2001 From: josedario87 Date: Wed, 4 Jun 2025 19:59:20 -0600 Subject: [PATCH] arreglados nombres del deploy --- .gitea/workflows/deploy.yml | 6 +++--- docker-compose.yml | 16 ++++++++-------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 61b8627..f6b2b24 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -21,14 +21,14 @@ jobs: - name: Remove old images run: | - docker rmi -f gitea.interno.com/nucleo000/conversation-whatsapp-router:latest || true + docker rmi -f gitea.interno.com/nucleo000/whatsapp-router:latest || true docker rmi -f gitea.interno.com/nucleo000/conversation-chat-ui:latest || true - name: Mirror open-wa image to Gitea run: | docker pull openwa/wa-automate:latest - docker tag openwa/wa-automate:latest gitea.interno.com/nucleo000/conversation-openwa:latest - docker push gitea.interno.com/nucleo000/conversation-openwa:latest + docker tag openwa/wa-automate:latest gitea.interno.com/nucleo000/nucleo-whatsapp:latest + docker push gitea.interno.com/nucleo000/nucleo-whatsapp:latest docker rmi openwa/wa-automate:latest - name: Build and push stack images diff --git a/docker-compose.yml b/docker-compose.yml index 522e421..91b53dc 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,23 +1,23 @@ version: '3.9' services: openwa: - image: gitea.interno.com/nucleo000/conversation-openwa:latest - container_name: conversation-openwa + image: gitea.interno.com/nucleo000/nucleo-whatsapp:latest + container_name: nucleo-whatsapp environment: - WEBHOOK_URL=http://whatsapp-router:3001/webhook - PORT=8080 - - API_HOST=0.0.0.0 + # - API_HOST=0.0.0.0 ports: - "8080:8080" volumes: - - openwa_data:/usr/src/app/session + - nucleo_whatsapp_sessions:/sessions whatsapp-router: build: ./whatsapp-router - image: gitea.interno.com/nucleo000/conversation-whatsapp-router:latest - container_name: conversation-whatsapp-router + image: gitea.interno.com/nucleo000/whatsapp-router:latest + container_name: nucleo-whatsapp environment: - - LLM_AGENT_URL=http://llm-agent:8000 + # - LLM_AGENT_URL=http://llm-agent:8000 - OPEN_WA_URL=http://openwa:8080 ports: - "3001:3001" @@ -29,7 +29,7 @@ services: environment: - LLM_AGENT_URL=http://llm-agent:8000 ports: - - "3000:3000" + - "3015:3000" volumes: openwa_data: