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
Hi,
I'm starting to use teddycloud.
I version my containers in a git repository
to update i use the renovate bot
Sadly i noticed, that teddycloud does not follow common versioning rules
Most Docker containers follows the semver schema
if we take a look at the version of this project it is tc_v0.6.2_ubuntu
this version starts with a prefix tc_
the prefix v is common on github, tools like renovate will respect that
the suffix _ubuntu also violates the semver spec, you have to use a -
In this case tools like renovate cannot detect the version and i don't get update notifications.
I could fix this for me with a renovate rule, but maybe i'm not the only one who does not want to use the latest tag.
Hi,
I'm starting to use teddycloud.
I version my containers in a git repository
to update i use the renovate bot
Sadly i noticed, that teddycloud does not follow common versioning rules
wrong:
ghcr.io/toniebox-reverse-engineering/teddycloud:tc_v0.6.2_ubuntu
right:
ghcr.io/toniebox-reverse-engineering/teddycloud:v0.6.2-ubuntu
You should remove
tc_
prefix and use-
instead of_
It would be nice if you can ensure that the release tags would match these rules
source:
https://docs.renovatebot.com/modules/versioning/docker/
The text was updated successfully, but these errors were encountered: