How to deploy a multi-container web app in Azure App Service?

How to deploy a multi-container web app in Azure App Service? Hello Everyone Welcome to CloudAffaire and this is Debjeet. In today’s blog post, we will discuss how to deploy a multi-container web app using Azure App Service. How to deploy a multi-container web app in Azure App Service? Prerequisites: Azure CLI installed and configured Step 1: Clone the sample voting app code that uses multiple containers. [crayon-6428f1fa2c3d0713918363/] Step 2: Create a new resources…

0 Comments

How to scan images in ECR container registry using AWS inspector?

How to scan images in ECR container registry using AWS inspector? Hello Everyone Welcome to CloudAffaire and this is Debjeet. Today we will discuss how to setup image scanning on push in ECR container registry with AWS inspector service using AWS CLI and review the findings report. What is Elastic Container Registry (ECR)? Amazon Elastic Container Registry (Amazon ECR) is an AWS managed container image registry service that is secure, scalable, and reliable. Amazon…

0 Comments

How to create a private repository in Amazon Elastic Container Registry (ECR) using AWS CLI?

How to create a private repository in Amazon Elastic Container Registry (ECR) using AWS CLI? Hello Everyone Welcome to CloudAffaire and this is Debjeet. Today we will discuss how to create a private repository in AWS Elastic Container Registry (ECR) using AWS CLI. We will also discuss on how to push and pull a docker image from AWS ECR private repository using AWS CLI. What is Elastic Container Registry (ECR)? Amazon Elastic Container Registry…

0 Comments

How To Create Docker Swarm Cluster In AWS EC2

How to create docker swarm cluster in AWS EC2 Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed docker machine. https://cloudaffaire.com/docker-machine/ In this blog post, we will discuss how to create a docker swarm cluster in AWS. We will also deploy a docker stack in this docker swarm cluster. Prerequisite for this demo: AWS EC2 Linux 2 instance with internet access Docker 1.2 and above Docker…

0 Comments

Docker Machine

Docker Machine Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed docker stack. https://cloudaffaire.com/docker-stack/ In this blog post, we will discuss docker machine. We will also create a docker swarm manager node in AWS EC2 using docker machine. Prerequisite for this demo: AWS EC2 Linux 2 instance with internet access Docker 1.2 and above AWS CLI IAM user with programmatic access to create and manage EC2…

0 Comments

How To Create And Manage Docker Stack

How To Create And Manage Docker Stack Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed docker service. https://cloudaffaire.com/how-to-create-and-manage-docker-service/ In this blog post, we will discuss how to create and manage docker stack. We will also deploy a docker stack in our existing docker swarm cluster. Prerequisite for this demo: Docker swarm cluster initiated and configured What is a docker stack? A stack is a group…

0 Comments

How To Create And Manage Docker Service

How To Create And Manage Docker Service Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed docker swarm. https://cloudaffaire.com/how-to-create-and-manage-docker-swarm-cluster/ In this blog post, we will discuss docker service. We will also deploy a docker service in our existing docker swarm cluster. Prerequisite for this demo: Docker swarm cluster initiated and configured What is docker service? In a distributed application, different pieces of the app are called…

0 Comments

How To Create And Manage Docker Swarm Cluster

How To Create And Manage Docker Swarm Cluster Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed docker compose. https://cloudaffaire.com/how-to-create-a-multi-container-application-using-docker-compose/ In this blog post, we will discuss the docker swarm. We will also configure our 1st docker swarm cluster. What is Docker Swarm? The cluster management and orchestration features embedded in the Docker Engine are built using swarmkit. Swarmkit is a separate project which implements Docker’s…

0 Comments

How To Create A Multi Container Application Using Docker Compose

How To Create A Multi Container Application Using Docker Compose Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed Dockerfile. https://cloudaffaire.com/how-to-create-a-docker-image-using-dockerfile/ In this blog post, we will discuss how to create a multi-container application using docker compose. We will also create a multi-container application using docker-compose. Prerequisite for this demo: One AWS EC2 instance with Linux 2 AMI and internet access. Docker What is Docker Compose?…

1 Comment

How To Create A Docker Image Using Dockerfile

How To Create A Docker Image Using Dockerfile Hello Everyone Welcome to CloudAffaire and this is Debjeet. In the last blog post, we have discussed docker volume. https://cloudaffaire.com/how-to-create-and-manage-docker-volume/ In this blog post, we will discuss Dockerfile. We will also create a docker image using Dockerfile. Prerequisite for this demo: One AWS EC2 instance with Linux 2 AMI and internet access. Docker What is Dockerfile? Docker can build images automatically by reading the instructions from…

0 Comments