Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/watchers/providers/docker/Docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ function getTagCandidates(
// Prefix is almost-always standardised around "must stay the same" for tags
if (!container.includeTags) {
const currentTag = container.image.tag.value;
const match = currentTag.match(/^(.*?)(\d+.*)$/);
const match = currentTag.match(/^(.*?)(\d+\.\d+\.\d+.*)$/);
const currentPrefix = match ? match[1] : '';

if (currentPrefix) {
Expand Down