Showing posts with label Containerization. Show all posts
Showing posts with label Containerization. Show all posts

Monday, September 14, 2020

Deploying dockerized .net microservice to Kubernetes cluster using Azure DevOps YAML pipeline

In my previous blog https://www.leogether.com/2020/09/creating-kubernetes-cluster-with-azure.htmlI created the Azure Container Registry and Kubernetes cluster using Terraform and Azure DevOps. I would encourage you to read my previous blog first before reading this.In this blog, I will show you...

Sunday, August 23, 2020

Deploy multi-container application using Docker Compose

 Hi Everyone, in this blog we will see how to deploy the multi-container applications using Docker Compose. Docker Compose is a tool for running multi-container docker applications. Usually, one container is used to host one service. Let's take a case where have a massive application where...

Thursday, August 13, 2020

Kubernetes - the container orchestration engine

 I talked about dockers and containers in one of my blogs: https://leogether.blogspot.com/2020/08/docker-basics.html. Now let's talk about what is Kubernetes and why do we need it?. Containers are fast, reliable, light-weighted, and scalable.You can easily scale 1 container to many...

Dockers and Containers

 An application works in the Dev environment but the same fails in testing or prod environment due to different computing environments. Docker is a container-based technology to create, deploy, and run applications by using containers.They are lightweight alternatives to VMs, uses host OS,...

Sunday, August 9, 2020

Containerizing a .net microservice

Welcome visitor! Thank you for stopping by. This is the first blog of mine and I hope you like it. I am really excited about it. Please bear with me and I promise to get better every time. In this article, you are going to see a complete tutorial on how can we can containerize a .net...