Rename Wallamonitor to Wallabicher across all files and update related configurations in Docker and documentation. Adjusted service names, container names, and references in scripts and frontend components to reflect the new naming convention.

This commit is contained in:
Omar Sánchez Pizarro
2026-01-19 22:04:25 +01:00
parent 609d9e24e7
commit dc9c9130aa
23 changed files with 198 additions and 150 deletions

View File

@@ -2,7 +2,7 @@ services:
# Redis para cache de artículos
redis:
image: redis:7-alpine
container_name: wallamonitor-redis
container_name: wallabicher-redis
ports:
- "6379:6379"
volumes:
@@ -14,7 +14,7 @@ services:
timeout: 3s
retries: 3
networks:
- wallamonitor-network
- wallabicher-network
restart: unless-stopped
# Backend Node.js API
@@ -22,7 +22,7 @@ services:
build:
context: ./web/backend
dockerfile: Dockerfile
container_name: wallamonitor-backend
container_name: wallabicher-backend
environment:
- NODE_ENV=production
- PORT=3001
@@ -39,7 +39,7 @@ services:
redis:
condition: service_healthy
networks:
- wallamonitor-network
- wallabicher-network
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:3001/api/stats"]
@@ -52,24 +52,24 @@ services:
build:
context: ./web/frontend
dockerfile: Dockerfile
container_name: wallamonitor-frontend
container_name: wallabicher-frontend
depends_on:
- backend
networks:
- wallamonitor-network
- wallabicher-network
restart: unless-stopped
# Servicio Python principal (Wallamonitor)
# Servicio Python principal (Wallabicher)
# NOTA: Para usar Redis, asegúrate de que config.yaml tenga:
# cache:
# type: "redis"
# redis:
# host: "redis" # Nombre del servicio en Docker
wallamonitor:
wallabicher:
build:
context: .
dockerfile: Dockerfile
container_name: wallamonitor-python
container_name: wallabicher-python
environment:
- PYTHONUNBUFFERED=1
volumes:
@@ -84,7 +84,7 @@ services:
backend:
condition: service_healthy
networks:
- wallamonitor-network
- wallabicher-network
restart: unless-stopped
# El servicio Python no necesita exponer puertos, solo se comunica con Redis y Telegram
@@ -93,6 +93,6 @@ volumes:
driver: local
networks:
wallamonitor-network:
wallabicher-network:
driver: bridge