When I am pushing new image to repo I would like it to have two tags for example 0.2 and latest. This would allow to always pull latest image version b
0.2
latest
You can create multiple tags:
docker tag /:0.2 docker tag /:latest
and push these.