Is there any way that when I build an image and use the latest tag, it would version those images?
In my compose file I have app:latest as a parameter, but whenever I push the new latest image, it doesn't automatically update.
Is there a way to automatically make compose pull the latest images or do I need to always use docker-compose down, change the version of my image in compose (1.1, 1.2, 1.3...), save it, and then do docker-compose up?
Thanks in advance!