This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # EZQL | |
| ## Funcionalidades Principales | |
| ### Ejecución de Consultas | |
| - Ejecuta consultas mediante: | |
| - Botones de la interfaz | |
| - `F5` | |
| - `Ctrl + Shift + E` | |
| - Ejecuta el contenido completo del editor cuando no hay selección. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # EZQL | |
| ## Main Features | |
| ### Query Execution | |
| - Run queries using: | |
| - Interface buttons | |
| - `F5` | |
| - `Ctrl + Shift + E` | |
| - Runs the full editor content when there is no selection. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging. | |
| # INSTALA LAS DEPENDENCIAS DE LA APLICACION | |
| FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base | |
| # ESTABLECE EL DIRECTORIO DE TRABAJO (Esto es un entorno de linux) | |
| WORKDIR /app | |
| # EXPONE LOS PUERTOS 80 Y 443 para los protocolos HTTP y HTTPS | |
| # Estos no son los puertos mediante los cuales se accede a la aplicacion, sino los puertos que se exponen en el contenedor | |
| # El puerto externo se configura en el archivo docker-compose.yml | |
| EXPOSE 80 |