ECS Service Image Updater assists with updating an ECS Service to use a new Docker image. If all you are changing is the image (eg new version of your application) it can be cumbersome to create a new Task Definition. It will copy the current running Task Definition in the Service, update the image, publish the new Task Definition and update the Service to use the new Task Definition.
Options:
--help Show help [boolean]
--version Show version number [boolean]
--image Docker image and tag [required]
--container-name Container to update in the ECS Task Definition.
Conflicts with container-names.
--container-names List of containers to update in the ECS Task
Definition. Comma separated. Conflicts with
container-name.
--service-name ECS Service to update
--task-definition-family Task Definition Family create the new Task
Definition in
--cluster-arn Arn of the ECS Cluster for which the Service exists
on. Used in conjunction with service-name
--output-arn-only Output the new Task Definition Arn only
--wait Wait for the Service to be stable after updating
the Task Definition
$ ecs-service-image-updater --cluster-arn arn:aws:ecs:us-east-1:123456789:cluster/cluster --image image:tag --container-name app --service-name app
$ ecs-service-image-updater --image image:tag --container-name app --task-definition-family app
const updater = require('ecs-service-image-updater');
var options = {
clusterArn: 'clusterArn',
serviceName: 'serviceName',
containerNames: ['containerName'],
image: 'image:tag'
}
updater(options, (err, taskDefinitionArn) => {
if (err) throw err;
console.log('done');
});