Friday, November 20, 2015

deployment - Automatically update Docker containers using webhooks

I have created a Github repo and a Docker repo. Both work together very well: when I push a new version of Dockerfile to Github, a new image is automatically built inside the Docker repo.



Now, I'd like to have my running containers automatically updated when the base-image is (re)built.



How can I achieve it using Docker repos webhooks?

No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...