Diagnóstico y fix SQL Server: SERVERNAME, TDS_Version, Puerto explicitos

This commit is contained in:
desoladorxx
2026-07-22 16:11:54 -05:00
commit cd18c4ca5e
48 changed files with 8389 additions and 0 deletions

28
docker-compose.yml Normal file
View File

@@ -0,0 +1,28 @@
version: '3.8'
services:
backend:
build:
context: ./backend
dockerfile: Dockerfile
container_name: leads_backend
restart: always
ports:
- "8001:8001"
env_file:
- ./backend/.env
environment:
- PORT=8001
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
args:
- VITE_API_BASE_URL=http://api-leads.escueladerefrigeracion.lat
container_name: leads_frontend
restart: always
ports:
- "80:80"
depends_on:
- backend