How to trigger Elastic Beanstalk auto deploy new version when updating ECR image

0

I set up my Elastic Beanstalk getting image from the ECR. This is my Dockerrun.aws.json file

{
    "AWSEBDockerrunVersion": "1",
    "Image": {
        "Name": "my_ecr_repository_link:latest",
        "Update": "true"
    },
    "Ports": [
        {
            "ContainerPort": 8080,
            "HostPort": 8080
        }
    ]
}

Everything works well, but when I push a new image to ECR, the Elastic Beanstalk is not triggered to deploy a new version. Do you have any suggestions for me? Thanks for your help.

asked 8 months ago66 views
No Answers

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions