docker-compose up
To stop and remove all containers of the sample application run:
docker-compose down
To stop and remove all containers with Volume of the sample application run:
docker-compose down -v
## ✨ MSSQL Config
#
>- username - **sa**
>- password - **Passw0rd.**
>- port - **1433**
## 🎓 MSSQL Commands
#
1. Run the following command to open the mssql client terminal and enter the password (Passw0rd.) when prompted.
```console
docker exec -it mssql_container /opt/mssql-tools/bin/sqlcmd -S localhost -U sa
- To See list of database:
select name from sys.databases;
GO
- Create database command
create database lks;
GO
- Change database context command
use lks;
GO
- Create database command
drop database lks;
GO