It seems cleaner to me to tag the base image (form which other project images are built) as "base" rather than "master".
With the current system:
# REPOSITORY TAG ....
# test master.093e707 ....
# test master ....
On the last line, master just means the base image (as it could actually be a non-master git branch) but it means the git branch master in the line above. If it's called base it'd look like:
REPOSITORY TAG ....
test master.093e707 ....
test base ....
which feels more intuitive and intent revealing. Happy to add a pull request if it makes sense to you too.
Cheers
Roovo
It seems cleaner to me to tag the base image (form which other project images are built) as "base" rather than "master".
With the current system:
On the last line, master just means the base image (as it could actually be a non-master git branch) but it means the git branch master in the line above. If it's called base it'd look like:
which feels more intuitive and intent revealing. Happy to add a pull request if it makes sense to you too.
Cheers
Roovo