Showing posts with label Docker. Show all posts
Showing posts with label Docker. Show all posts

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 you have multiple services, in that case, we would need several containers for each service and containers will need to interact with each other. Creating it manually using the docker run command will be complicated.

Thursday, August 13, 2020

Dockers and Containers

 

Docker and containers basics


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, and do not need to pre-allocate any RAM.

Below are self-explanatory diagrams of what is docker and how docker works.








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 microservice. I will go step by step so that you can follow along. The following steps are covered: