this post was submitted on 07 Jul 2023
19 points (100.0% liked)

Selfhosted

39238 readers
317 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

I used to simply use the 'latest' version tag, but that occasionally caused problems with breaking changes in major updates.

I'm currently using podman-compose and I manually update the release tags periodically, but the number of containers keeps increasing, so I'm not very happy with this solution. I do have a simple script which queries the Docker Hub API for tags, which makes it slightly easier to find out whether there are updates.

I imagine a solution with a nice UI for seeing if updates are available and possibly applying them to the relevant compose files. Does anything like this exist or is there a better solution?

top 31 comments
sorted by: hot top controversial new old
[–] [email protected] 6 points 1 year ago

I read the changelogs for the apps, and manually update the containers. Too many apps have breaking changes between releases.

[–] [email protected] 5 points 1 year ago (2 children)

WatchTower can auto uodate your container or notify you when an update is available, I use it with a Matrix account for notifications

[–] [email protected] 1 points 1 year ago

Yes, https://containrrr.dev/watchtower/ is a great tool. Used it myself for a whole now.

[–] [email protected] 0 points 1 year ago (1 children)

Sorry if it's obvious, but I don't see a way to use Matrix for notifications on their documentation and my searching is coming up blank. Do you by chance have a tutorial for this?

[–] [email protected] 3 points 1 year ago* (last edited 1 year ago) (1 children)

Here is how I did it:

docker run -d \
  --name watchtower \
  -v /var/run/docker.sock:/var/run/docker.sock \
  -e WATCHTOWER_NOTIFICATION_URL=matrix://username:[email protected]/?rooms=!ROOMID:domain.org \
  -e WATCHTOWER_NOTIFICATION_TEMPLATE="{{range .}}[WatchTower] ({{.Level}}): {{.Message}}{{println}}{{end}}" \
  containrrr/watchtower

Edit: I created a pull request to the WatchTower documentation, here: https://github.com/containrrr/watchtower/pull/1690

[–] [email protected] 2 points 1 year ago

Thank you very much! I'll get this set up on mine.

[–] [email protected] 3 points 1 year ago

I use DIUN (docker image update notifier). You can watch tags with it and it will notify you when updates are available. I have it email me Saturday morning. I like it a lot more than watchtower.

https://github.com/crazy-max/diun

[–] [email protected] 2 points 1 year ago

Since my "homelab" is just that, a homelab, I'm comfortable with using :latest-tag on all my containers and just running docker-compose pull and docker-compose up -d once per week.

[–] [email protected] 2 points 1 year ago (2 children)

You read breaking changes before you update things, that's how.

[–] [email protected] 0 points 1 year ago* (last edited 1 year ago) (1 children)

Seriously. All this talk of automatically updating versions has my head spinning!

[–] [email protected] 1 points 1 year ago

I use watchtower and hope nothing will break. I never read breaking changes.

When an issue happens, I just search the internet or change the tag to a known working version until the issue is resolved.

I can afford to have my server down for a few days. It’s not critical to me.

[–] [email protected] 0 points 1 year ago (1 children)

Are they documented separately from other changes?

[–] [email protected] 0 points 1 year ago (1 children)

It depends on the project. If the project doesn't make an effort to highlight them I would consider using a different one.

But any decent OSS will make a good change log for their updates that you can read.

[–] [email protected] 1 points 1 year ago* (last edited 1 year ago) (1 children)

I've just been updating my containers every week or so and if something breaks I'll try and fix it. It would definitely be preferable to "fix" in advance, but with enough containers getting updated, checking/reading every change becomes a fair amount of work. Most of the time nothing breaks.

Downvotes are cool but if this is a bad way of doing things just tell me.

[–] [email protected] 0 points 1 year ago (1 children)

What is driving you to need to update so often?

[–] [email protected] 1 points 1 year ago (1 children)

Nothing. Is this too frequent?

[–] [email protected] 1 points 1 year ago

Well, there's always the "if it ain't broke don't fix it" mantra. There's a few reasons I tend to update. Because there's a feature I want or need, to fix a big that affects me, or because a software frequently updates with breaking changes and keeping up with reading change logs is the best way to deal with that. The last option is usually because if I keep up with it I don't have to read and fix multiple months of breaking changes.

[–] [email protected] 2 points 1 year ago

I combine 3 options:

  1. Watchtower updates most containers. They never break. If it leads to some breaking, it goes to the second option.
  2. Update script that update the whole stack from portainer webhook. This did fix the only stack that used to give me issues with watchtower. The other stack is watchtower itself.
  3. Manual update. Only for Homeassistant. I want to make sure to know about breaking changes. So I update it when I can and I read the patch notes.

It works for my around 100 containers.

[–] [email protected] 1 points 1 year ago

I use a combination of flux and a python app that checks out everything running on my cluster and keeps me a list of what needs some attention from upgrades and kube-clarity as well. It's more kubernetes related though.

[–] [email protected] 1 points 1 year ago (1 children)

Kubernetes with ArgoCD declarative config and then Renovate. It automatically makes prs against my config repo for container/chart versions with the change log in the description

[–] [email protected] 0 points 1 year ago (2 children)

You obviously know a thing or two about Kubernetes. I'm trying to learn. I've been at the cloud native conference, I attended the vmware tanzu course, even played with microk8s on my laptop. I still look for the "aha!" moment, when I understand the point of it all, and everything clicks into place.

However, whenever I see somebody describe their setup, I just cringe. It all just feels like we're doing simple things in an obscure and difficult way.

The technology has been here for almost a decade, and it's obviously not going away. How can I escape the misery, and start loving k8s?

Picture somehow related...

[–] [email protected] 1 points 1 year ago* (last edited 1 year ago)

You weren't asking me, but I've used K8s professionally and my take is that K8s is only suited for business environments, ones with a good number of devs and users and complex deployment/runtime needs. You're not finding that "aha!" with K8s for self-hosting at home because, simply put, you are not the target market. It's way overkill for your needs. The one exception is if you're trying to learn it at home so you can use it in a corporate environment. In that case, go wild. But just don't expect it to make sense for most modest home lab or self-hosting needs.

[–] [email protected] 1 points 1 year ago

For sure, just stacking turtles all the way down... 🐢 It's definitely overkill for a home lab, but I'm an infra engineer, and it's what I use daily, so setting it up was worth it because I'm already really familiar with the stack. That said, I do absolutely love having declarative setup at home because I'll sometimes go months without touching things. Before I spent the time to make it declarative, I'd frequently forget how I set certain things up and waste time redoing, or figuring out where I left off. Now I just check commit history and I'm always moving forward.

[–] [email protected] 1 points 1 year ago (1 children)

I use podman auto-update command.

I'd also like to see what others use

[–] [email protected] 1 points 1 year ago

I originally used this too, but in the end had to write my own python script that basically does the same thing and is also triggered by systemd. The problem I had was that for some reason podman sometimes thinks there is a new image, but when it pulls it just gets the old image. This would then trigger restarts of the containers because auto-update doesn't check if it actually downloaded anything new. I didn't want those restarts so had to write my own script.

Edit: but I lock the version manually though e.g. nextcloud 27 and check once a month if I need to bump it. I do this manually in case the upgrade needs an intervention.

[–] [email protected] 1 points 1 year ago* (last edited 1 year ago) (1 children)

I just use docker compose files. Bundle my arr stack in a single compose file and can docker compose pull to update them all in one swoop.

[–] [email protected] 0 points 1 year ago (1 children)

Just so I understand, you're using your compose file to handle updating images? How does that work? I'm using some hacked together recursive shell function I found to update all my images at once.

[–] [email protected] 3 points 1 year ago

There’s plenty of tutorials out there for it. A quick DuckDuckGo search turned up this as one of the first results, but the theory is the same if you wanted to bundle ‘arr containers instead of nginx/whatever. https://www.digitalocean.com/community/tutorials/workflow-multiple-containers-docker-compose

Essentially you create docker compose file for services, within which you have as many containers as you want set up like you would any other compose file. You ‘docker compose pull’ and ‘docker compose up -d’ to update/install just like you would for individual docker container, but it does them all together. It sounds like others in the thread have more automated someone with services dedicated to watching for updates and running those automatically but I just look for a flag in the app saying there’s an update available and pull/ up -d whenever it’s convenient/I realize there’s an update.

[–] [email protected] 0 points 1 year ago (1 children)

Auto update with "latest" version tag, and re-pull to a specific previous version if there are problems. Got too many containers to keep up with individual versions

[–] [email protected] 1 points 1 year ago (1 children)

If you pull 'latest' and then want to roll back, how do you know what version you were in before? Is there a way to see what version/tag actually got pulled when you pull latest?

[–] [email protected] 1 points 1 year ago

Last time it happened was with one of the newer Nextcloud updates. It was a bit of trial and error, but I eventually went back to a version that worked and I could fix the underlying issue. There should be a list of version tags either on dockerhub or GitHub that list all versions that have been pushed to live and are available to pull

load more comments
view more: next ›