AWS کنٹینرز چلانے کے لیے متعدد طریقے فراہم کرتا ہے — ECS (Elastic Container Service، AWS کا اپنا orchestrator)، EKS (managed Kubernetes)، اور Fargate (serverless کنٹینرز، کوئی سرورز منیج کرنے کی ضرورت نہیں)۔ اختیارات کو سمجھنا صحیح کنٹینر platform منتخب کرنے میں مدد دیتا ہے۔
ECS — AWS کا container orchestrator
ECS runs and orchestrates Docker containers on AWS:
→ simpler than Kubernetes; deeply integrated with AWS (IAM, ALB, CloudWatch, VPC)
→ TASK (a running container set), TASK DEFINITION (the spec), SERVICE (keeps N tasks
running, integrates with load balancers, auto-scales)
→ good for teams wanting container orchestration without Kubernetes complexity
