Hello! I was wondering if running periodically a script to automatically pull new images for all my containers is a good or a bad idea. I’d run it everyday at 5.00AM to avoid interruptions. Any tips?

EDIT: Thanks to everyone for the help! I’ll install Watchtower to manage the updates

  • tubbadu@lemmy.kde.socialOP
    link
    fedilink
    English
    arrow-up
    15
    arrow-down
    1
    ·
    9 days ago

    Because I was today years old when I found out this beautiful piece of software exist :D

    thank you very much!

    • paris@lemmy.blahaj.zone
      cake
      link
      fedilink
      English
      arrow-up
      1
      ·
      5 days ago

      I use Watchtower and haven’t had any major issues in the two(?) years I’ve been using it. Make sure you use persistent volumes for your containers and make sure you back up those volumes. If anything breaks, you can roll back to before the update.

      If you don’t use persistent volumes, you’ll lose data when Watchtower takes down the image and replaces it with the newer one (which doesn’t copy over ephemeral volumes).

      I also recommend for database containers to use an image tag that won’t update with breaking changes. Don’t use postgres:latest, use postgres:15.2 or something like that (whatever the image you’re using the database for recommends).