workspace/projects/erp-suite/apps/verticales/mecanicas-diesel/docker-compose.prod.yml
rckrdmrd 513a86ceee
Some checks are pending
CI Pipeline / changes (push) Waiting to run
CI Pipeline / core (push) Blocked by required conditions
CI Pipeline / trading-backend (push) Blocked by required conditions
CI Pipeline / trading-data-service (push) Blocked by required conditions
CI Pipeline / trading-frontend (push) Blocked by required conditions
CI Pipeline / erp-core (push) Blocked by required conditions
CI Pipeline / erp-mecanicas (push) Blocked by required conditions
CI Pipeline / gamilit-backend (push) Blocked by required conditions
CI Pipeline / gamilit-frontend (push) Blocked by required conditions
Major update: orchestration system, catalog references, and multi-project enhancements
Core:
- Add catalog reference implementations (auth, payments, notifications, websocket, etc.)
- New agent profiles: Database Auditor, Integration Validator, LLM Agent, Policy Auditor, Trading Strategist
- Update SIMCO directives and add escalation/git guidelines
- Add deployment inventory and audit execution reports

Projects:
- erp-suite: DevOps configs, Dockerfiles, shared libs, vertical enhancements
- gamilit: Test structure, admin controllers, service refactoring, husky/commitlint
- trading-platform: MT4 gateway, auth controllers, admin frontend, deployment scripts
- platform_marketing_content: Full DevOps setup, tests, Docker configs
- betting-analytics/inmobiliaria-analytics: Initial app structure

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-12 22:53:55 -06:00

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