What is the difference between a task and a service in AWS ECS?

A Task Definition is a collection of 1 or more container configurations. Some Tasks may need only one container, while other Tasks may need 2 or more potentially linked containers running concurrently. The Task definition allows you to specify which Docker image to use, which ports to expose, how much CPU and memory to allot, … Read more

Update the container of a service in Amazon ECS

Not sure if this is considered as abandoned question – stumbled upon this while troubleshooting my issue and now adding my solution now that it’s resolved. To update service with new container, you need to: upload new container to repository; trigger task definition update; trigger container update; important: make sure service rules allow launching new … Read more