<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Containers :: Tag :: Helm</title><link>https://getting-started-with-helm.vertiaitech.com/tags/containers/index.html</link><description/><generator>Hugo</generator><language>en-us</language><lastBuildDate>Sat, 02 Aug 2025 00:00:00 +0000</lastBuildDate><atom:link href="https://getting-started-with-helm.vertiaitech.com/tags/containers/index.xml" rel="self" type="application/rss+xml"/><item><title>Session 01</title><link>https://getting-started-with-helm.vertiaitech.com/dotnet/day01/index.html</link><pubDate>Sat, 02 Aug 2025 00:00:00 +0000</pubDate><guid>https://getting-started-with-helm.vertiaitech.com/dotnet/day01/index.html</guid><description>Learn Docker concepts, architecture, and how to write your first Dockerfile with real examples.</description></item><item><title>Session 02</title><link>https://getting-started-with-helm.vertiaitech.com/dotnet/day02/index.html</link><pubDate>Sat, 02 Aug 2025 00:00:00 +0000</pubDate><guid>https://getting-started-with-helm.vertiaitech.com/dotnet/day02/index.html</guid><description>Learn how to use Docker Compose to define and run multi-container applications with ease.</description></item><item><title>.NET Related containers</title><link>https://getting-started-with-helm.vertiaitech.com/dotnet/misc/index.html</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://getting-started-with-helm.vertiaitech.com/dotnet/misc/index.html</guid><description>Install ms sql on container docker run -e "ACCEPT_EULA=Y" \ -e "MSSQL_SA_PASSWORD=Redhat@123456" \ -p 1433:1433 \ --name sql2022 \ -d mcr.microsoft.com/mssql/server:2022-latest Create a database in Ms sql docker run -it --rm \ --network container:sql2022 \ mcr.microsoft.com/mssql-tools \ /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P 'Redhat@123456' -Q "CREATE DATABASE LMSDatabase" Check the database if available docker run -it --rm --network container:sql2022 mcr.microsoft.com/mssql-tools /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P 'Redhat@123456' 1> SELECT name FROM sys.databases; 2> GO name -------------------------------------------------------------------------------------------------------------------------------- master tempdb model msdb LMSDatabase (5 rows affected) { "ConnectionStrings": { "DefaultConnection": "Server=localhost,1433;Database=LMSDatabase;User Id=sa;Password=Redhat@123456;TrustServerCertificate=true" } } 🚀 Host a Static Website with IIS in Docker (Windows) This guide walks you through creating and deploying a simple static HTML site using IIS inside a Docker container on Windows.</description></item></channel></rss>