We are currently creating our Docker containers and publishing them on Amazon ECR. We created TaskDefinitions and can deploy them manually in the ECS cluster. Thus, the new deployment includes a manual update of TaskDefinition.
Now we would like to automate the deployment, so when the Docker image is successfully created using Jenkins and published to the ECR repository, we would like to replace the current current version with the new one.
In addition, we would like to give people the opportunity to launch a specific version of 1 or more docker container combinations. Any suggestion on how we can implement a continuous loop without manually updating TaskDefinitions?
Marco source
share