We are using automated Docker hub builds to create our application images automatically whenever new commit is pushed to github.
That works well when we manually change the tag on docker hub. Now what we want is to create the image tag automatically as git commit sha so that we can pull that image in our kubernetes deployment for rolling updates
we want some thing like this,
when commit foo is pushed in our application repository,
docker hub will build the image automatically and we will have new image on dockerhub as
myimage:foo
I did not find the documentation to achieve this on docker hub. How can one achieve this ?
Thanks.
Make a new executable file in
hooks/
calledpost_push
with these contents to push another image with the latest git short hash as its tag: