Docker tag with support a semantic version

The idea is:

Support major and minor on docker tag for non-breaking changes like in postgres, eg:

docker pull n8nio/n8n:0
docker pull n8nio/n8n:0.236
docker pull n8nio/n8n:1

This can be done using the same tag in the CI/CD process.

This is importan because can be used with watchtower to upgrade non-breaking changes automatic and improve security with less enfort.

Yes please, this is an essential feature. I need this for exactly the same reason.

The current tag system doesn’t work well with Watchtower because if you use the latest tag, you will get updated with breaking changes.

Other projects, like postgres as shown above, would allow me to just set n8nio/n8n:1 and get all updates that are 1.x.x, meaning that I don’t have to manually check for security updates.