TL;DR: is there an app that can alert me when a new version of some other app is available?

I have about 12 - 15 services (freshrss, heimdall, photoprism, Wordpress, etc) running using docker compose spread across 4 hosts. Through my self-hosting journey I’ve been burned a few times using “latest” images so I now pin app image versions within compose.

The problem then becomes that every couple of weeks, I have to go out to different GitHub’s, docker hub, etc. to see if a new update for that service is available. It gets a bit tedious with 12-15 services every couple of weeks so I need a centralized and more efficient way of “keeping up”.

Is there some type of app that can track whether an app/service has a new version available? Ideally it can send me some type of notification, self-hostable, and ideally not Portainer?

    • lal309@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      4
      ·
      7 months ago

      Love that username tho!! Yeah might just do RSS. I already run FreshRSS and it’s ability to filter stuff would probably come in handy too

    • lhamil64@programming.dev
      link
      fedilink
      English
      arrow-up
      1
      ·
      7 months ago

      That will just pull the latest image though right? I.e., if you explicitly have a container on a tag for v1.2.3, it wouldn’t upgrade you when v1.2.4 is released right?

        • lhamil64@programming.dev
          link
          fedilink
          English
          arrow-up
          1
          ·
          7 months ago

          No, I mean doesn’t it only look for updates of the current tag? That works fine if you set every container to the “latest” tag, but if you set your containers to specific version tags then you won’t get a notification unless that specific tag gets updated.

  • bluegandalf@lemmy.ml
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    7 months ago

    Check out WhatsupDocker. I use the same to inform me of updates. It is self-hostable as well. I then use the WUD widget for homepage to let me know that there’s an update available on my dashboard

  • __init__@programming.dev
    link
    fedilink
    English
    arrow-up
    2
    ·
    7 months ago

    If you have your compose files in git, you might be able to use renovate to send you pull requests with image updates. I’ve done something similar with kubernetes but I think it supports docker compose too. You might need some kind of automation on your hosts to keep things in sync.

  • Nibodhika@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    7 months ago

    I use diun and rss feeds. So far I’ve had different levels of success with different services.

    For example for Immich the RSS is a lot more useful because it lets you know when you need to run manual steps.

  • MrSoup@lemmy.zip
    link
    fedilink
    English
    arrow-up
    1
    arrow-down
    1
    ·
    edit-2
    7 months ago

    The best thing would be to make yourself a web crawler which get executed by cron.
    I’m not sure there is something which check some specific strings on some specific github repos for checking updates, but I could be wrong.