Sistema NEXUS v3.4 migrado con: Estructura principal: - core/orchestration: Sistema SIMCO + CAPVED (27 directivas, 28 perfiles) - core/catalog: Catalogo de funcionalidades reutilizables - shared/knowledge-base: Base de conocimiento compartida - devtools/scripts: Herramientas de desarrollo - control-plane/registries: Control de servicios y CI/CD - orchestration/: Configuracion de orquestacion de agentes Proyectos incluidos (11): - gamilit (submodule -> GitHub) - trading-platform (OrbiquanTIA) - erp-suite con 5 verticales: - erp-core, construccion, vidrio-templado - mecanicas-diesel, retail, clinicas - betting-analytics - inmobiliaria-analytics - platform_marketing_content - pos-micro, erp-basico Configuracion: - .gitignore completo para Node.js/Python/Docker - gamilit como submodule (git@github.com:rckrdmrd/gamilit-workspace.git) - Sistema de puertos estandarizado (3005-3199) Generated with NEXUS v3.4 Migration System EPIC-010: Configuracion Git y Repositorios
66 lines
1.6 KiB
YAML
66 lines
1.6 KiB
YAML
version: '3.8'
|
|
|
|
# =============================================================================
|
|
# ERP-SUITE: MECANICAS-DIESEL - Production Docker Compose
|
|
# =============================================================================
|
|
# Vertical: Mecánicas Diesel
|
|
# Puerto Frontend: 3040 | Puerto Backend: 3041
|
|
# Schemas BD: service_management, parts_management, vehicle_management
|
|
# =============================================================================
|
|
|
|
services:
|
|
backend:
|
|
image: ${DOCKER_REGISTRY:-72.60.226.4:5000}/erp-mecanicas-backend:${VERSION:-latest}
|
|
container_name: erp-mecanicas-backend
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3041:3041"
|
|
environment:
|
|
- NODE_ENV=production
|
|
- PORT=3041
|
|
env_file:
|
|
- ./backend/.env.production
|
|
volumes:
|
|
- mecanicas-logs:/var/log/mecanicas
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:3041/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|
|
networks:
|
|
- erp-network
|
|
- isem-network
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus: '1'
|
|
memory: 512M
|
|
|
|
frontend:
|
|
image: ${DOCKER_REGISTRY:-72.60.226.4:5000}/erp-mecanicas-frontend:${VERSION:-latest}
|
|
container_name: erp-mecanicas-frontend
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3040:80"
|
|
depends_on:
|
|
backend:
|
|
condition: service_healthy
|
|
networks:
|
|
- erp-network
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus: '0.5'
|
|
memory: 128M
|
|
|
|
volumes:
|
|
mecanicas-logs:
|
|
|
|
networks:
|
|
erp-network:
|
|
driver: bridge
|
|
isem-network:
|
|
external: true
|
|
name: isem-network
|