docker_tag_updater.helpers.datetime
#
RegexRules object for datetime-like versions.
- yymmddRules: RegexRules = {'yymmdd': '.*(?P<major>\\d{2})(?P<minor>\\d{2})(?P<patch>\\d{2})'}#
RegexRules for version strings of the type YYMMDD.
This object has the following equivalent aliases: yymmdd and YYMMDD.
- yyyymmddRules: RegexRules = {'yyyymmdd': '.*(?P<major>\\d{4})(?P<minor>\\d{2})(?P<patch>\\d{2})'}#
RegexRules for version strings of the type YYYYMMDD.
This object has the following equivalent aliases: yyyymmdd and YYYYMMDD.