AWS recently launched a new Application Load Balancer (ALB) that supports Dynamic Port Mapping with ECS. It allows you to run two containers of a service on a single server on dynamic ports which ALB automatically detects and reconfigures itself. Amazon EC2 Container Service ECS is a managed container service that allows you to run...
Through this blog, I would be explaining how to automate Docker deployments in AWS ECS using a Use Case. Prerequisite: Basic understanding of how Docker and AWS ECS works would be helpful. In the given use case, we have used microservices architecture, and earlier deployments were done manually. It used to take 15-20 minutes per...
Amazon EC2 Container Service is a container management service that makes it easy to manage docker containers on EC2 instances. AWS ECS you can create task definition to define container configuration like memory, cpu, environment variables, mount point and services to scale docker containers. Use Case: In one of our project we setup...