Home:ALL Converter>Update AWS ECR for every stable release in docker Hub

Update AWS ECR for every stable release in docker Hub

Ask Time:2020-09-04T07:09:05         Author:amit singh

Json Formatter

I have an docker public image, Now for some reason we had to shift it to AWS ECR,Now I am able to transfer the image to ECR from docker hub, but how to make sure that all the stable release in dockerhub will be pushed to AWS ECR, I want my ECR repo update with latest dockerhub image all the time.

Author:amit singh,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/63732794/update-aws-ecr-for-every-stable-release-in-docker-hub
VonC :

You might consider building and publishing your Docker image through GitHub and its CI (Continuous Integration) GitHub Actions option.\nThat way, you can, in your GitHub workflow, chain:\n\nPublish-Docker-Github-Action: Publishes docker containers to DockerHub\nappleboy/docker-ecr-action: Uploads Docker Image to Amazon Elastic Container Registry (ECR).\n\nEach time you are publishing a new version of your image, it would also be available in ECR.",
2020-09-08T04:22:18
yy