fmartinou / whats-up-docker

What's up Docker ( aka WUD ) gets you notified when a new version of your Docker Container is available.
https://fmartinou.github.io/whats-up-docker
MIT License
1.1k stars 35 forks source link

Link to the Registry Page of available update #340

Closed rezstje closed 8 months ago

rezstje commented 8 months ago

More of a QOL than an actual feature request.

I think it would be a really great addition if under the update tab of a container there would be a link to the registry page of the image. This way, you could quickly find any extra information like changelogs for said update and decide on whether you want to update your container.

fmartinou commented 8 months ago

Hi,

Currently, there is the possibility to associate a browsable link to the image (wud.link.template). That's a template which is rendered for both the current running image and the update candidate found on the remote registry.

For example:

version: '3'

services:

  mariadb:
    image: mariadb:10.6.4
    labels:
      - wud.link.template=https://mariadb.com/kb/en/mariadb-$${major}$${minor}$${patch}-changelog

Maybe could you leverage this feature to point to the registry page?

rezstje commented 8 months ago

This does exactly what I was looking for, thank you very much!