Tag Archives: docker

Setup Docker Swarm Cluster and Understanding its Components.

By | August 17, 2019

Docker Swarm: It’s an embedded functionality of Docker itself for Container Cluster management. This would be a brief and Simplified guide for Deploying Application to the Docker Swarm Cluster. For more details please have a look at the official documentations. Setup master and Worker Nodes Launch an Ec2 instance, We will create a master and… Read More »

Monitoring Servers and Docker Containers using Prometheus and Grafana.

By | June 22, 2019

Monitoring is one of the Important part of your Infrastructure which is mandatory to have. None of the Infrastructure is always stables and cannot be kept without monitoring and Alerting. Here We will be looking into how we can Monitor our Servers and even Docker Containers running inside the Server using Grafana, Prometheus, Node Exporter,… Read More »

Logging Docker Container Application logs to AWS Cloudwatch Logs

By | June 16, 2019

Logging Plays a very important role for any kind of the application you are running as it helps to debug any issues to you running applications or your system. Use of Docker Container is very popular nowadays and there is a lot of infrastructure running application on top of the Docker Container. For this particular… Read More »

Working With Docker Compose and Its Basic Commands.

By | June 1, 2019

We already have a blog for the docker compose installation procedures which you can refer from the here. In this particular blog, we would be discussing the use of docker compose and would also be looking into its demonstration by running a simple nginx container. For this demo, we would be using an AWS ec2… Read More »

Install Docker Compose on Linux – Ubuntu/CentOS.

By | June 1, 2019

Docker Compose is an Effective tool for running Multiple containers by passing multiple parameters in a YAML format/file and can simply be run as docker-compose up and docker-compose down. Ideally, when you run a docker container out of the docker image it can be helpful for running a single container with fewer parameters, but Just… Read More »

How to Install Docker on Redhat/CentOS 7

By | August 24, 2018

In this blog, we will see how to install Docker CE (Community Edition) in Redhat Enterprise Linux (RHEL 7) and CentOS 7. Please refer steps for installing Docker on ubuntu machine here. In the previous blog, we have tried to explain the basics of docker with the installation process. Here, We are not going to… Read More »

How to Install Docker on Ubuntu 16.04

By | August 24, 2018

Brief Introduction Docker is a computer program which is build to run multiple microservices (Applications) in the same machine on top of the container (Runtime System). It is a containerization platform which usually provides the virtualization at operating system levels. Though there is a difference between the virtual machine and a container, and the major difference is… Read More »