I am building a continuous deployment strategy using Docker. My code is hosted on Github, and the Docker registry starts auto-build when I click on git. The default value is to start building when I click the wizard and create an image using the "last" tag. This is good, but I also want to be able to mark commits in git and create an image on it. It seems that there are some functions for this on the Docker registry site, on the "Edit Automated Assemblies" page, I can select the "tag" for the type and specify a static tag name.
How can I use the Docker tag name in the same way as the git tag name?
The goal is to be able to mark specific versions so that version history exists.
source share