Tag Archives: docker-compose

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 »

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 »