vamshikrish007 / Aws-Ec2-Tutorial

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Aws-Ec2-Tutorial

AWS-ECS

1.ECS is one of the orchestor service available on AWS.
image

Docker

1.We cannot scale the docker using docker-compose, because we need to manually need to set the docker-compse on aws to deploy out image
1.AWS ECS has two launch types
A) EC2 launch type (Need to plan for the deployment and upgrades)
B) ECS FARGATE (This is s serverless service where the infra is taken care by AWS)

image image

Fargate (ECS-Fargate)
image
Task Definition file

  1. Task definition file is used to define settings for each container
image image

ECS-Service


ECS service automatically takes care of launching the container. image

About