You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I really don't know if it's a wud bug, something that i've misunderstood, ora something else.
I have a container with those relevant specifications: collabora: image: collabora/code:24.04.9.2.1 labels: wud.watch: 'true' wud.tag.include: '^\d+\.\d+\.\d+\.\d+\.\d+$'
Update on docker hub for this image are not detected.
Fore every other container i have wud works great, only this gives me trouble
Any idea?
Thanks and best regards
The text was updated successfully, but these errors were encountered:
This is because WUD is parsing this into a semver that would result in 24.04.9-2 (and the 1 would be discarded).
I'm guessing that this is an image based on Ubuntu 24.04 and that the actual version that you wish to track is 9.2.1.
In that case the following transform label should fix it for you: wud.tag.transform: '^(\d+)\.(\d+)\.(\d+\.\d+\.\d+) => $3-$1$2'
This would format the tag as 9.2.1-2404 which is a valid semver, with the ubuntu-release concatenated and used as prerelease number.
Hi.
I really don't know if it's a wud bug, something that i've misunderstood, ora something else.
I have a container with those relevant specifications:
collabora: image: collabora/code:24.04.9.2.1 labels: wud.watch: 'true' wud.tag.include: '^\d+\.\d+\.\d+\.\d+\.\d+$'
Update on docker hub for this image are not detected.
Fore every other container i have wud works great, only this gives me trouble
Any idea?
Thanks and best regards
The text was updated successfully, but these errors were encountered: