amazon-ecs
AWS ECS Error when running task: No Container Instances were found in your cluster
I figured this out after a few more hours of investigating. Amazon, if you are listening, you should state this somewhere in your management console when creating a cluster or adding instances to the cluster: “Before you can add ECS instances to a cluster you must first go to the EC2 Management Console and create … Read more
How do I deploy updated Docker images to Amazon ECS tasks?
If your task is running under a service you can force a new deployment. This forces the task definition to be re-evaluated and the new container image to be pulled. aws ecs update-service –cluster <cluster name> –service <service name> –force-new-deployment
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