↧
Answer by Rex Lam for AWS - ECS - How can I redeploy an updated Docker image...
If you don't specify the tag of an ECR image on your container definition, it will always fetch the latest one. Thus, you have 2 ways to achieve the re-deployment.Make sure your service having enough...
View ArticleAnswer by oddude for AWS - ECS - How can I redeploy an updated Docker image...
According to the AWS documentation, you can't really do that...you can read it here - https://docs.aws.amazon.com/cli/latest/reference/ecs/register-task-definition.htmlonly by "Create new revision of...
View ArticleAWS - ECS - How can I redeploy an updated Docker image on an existing ECS...
First, I created in AWS a repo with a Docker image in it. Then I created a Task Definition and an ECS / EC2 cluster. Finally I created a service using the cluster and the Task definition. Works fine....
View Article