/ SQl Server in Docker
By Evan Dangol
27 Jan 2024
09
35
This documentation shows you how you can configure a SQL Server 2019 Docker container.
sudo service docker status
docker pull mcr.microsoft.com/mssql/server:2019-latest
docker run -v mssql-volume -e 'ACCEPT_EULA=Y' -e "SA_PASSWORD=Pass123!" -p 1433:1433 --name sqlserver -d mcr.microsoft.com/mssql/server:2019-latest
docker ps
- Open ssms
- enter server name as 127.0.0.1
- username as sa
- password as Pass123!
Enter your email to receive our latest newsletter.
Don't worry, we don't spam
zenstack
machine-learning
Explore the process of deploying a serverless API with Vercel, leveraging Zenstack for Prisma integration, TypeScript for enhanced development, and Neon's complimentary PostgreSQL database for your project. -by Evan Dangol
Unveiling Machine Learning's Power- Detecting Toxic Comments with C# -by Evan Dangol
It's unlikely that gRPC will entirely replace REST (Representational State Transfer) API in the near future, as both technologies have their own strengths and are suitable for different use cases.gRPC (Google Remote Procedure Call) is a high-performance...