When specifying an Automated Build on Docker Hub, I can set some settings (Type
(\'Branch\' or \'Tag\'), Name
, Dockerfile Location
and
For the new Docker Hub Automated Build Anton Drukh's excellent answer can be achieved with a single rule
Source Type: Tag
Source: /^v([0-9.])\.([0-9.])\.([0-9.])$/
Docker Tag: release-{\1},release-{\1}.{\2},release-{\1}.{\2}.{\3},latest
Note that this is slightly different from Anton's answer as I am building latest from tag rather than master commit.