Comment on What tool do you use to display your self-hosting infrastructure
antsu@lemmy.wtf 6 months ago
My stuff is all in docker-compose with a stack/service structure, so listing it is as simple as running tree
, and reading the individual YAML files if I need in-depth details.
N0x0n@lemmy.ml 6 months ago
KISS ! That’s the way I’m doing it. Although it kinda gets more difficult to keep track of every docker image update after you have a dozen containers.
Thinking of something that could keep track and give me a nice notification about the changes and give a link to the github page before updating the container.
WeirdGoesPro@lemmy.dbzer0.com 6 months ago
Watchtower may be what you’re looking for.
N0x0n@lemmy.ml 6 months ago
Thanks :)) I did tried it out a few month ago. It works as expected, but I was looking for something with a nice webUI wich pulls the whole changelog before updating a container.
An AIO web interface that give all the changes and expected bugs or issues. I know there isn’t something like that… That’s why I just look out for github notifications with an RSS feed and read through all the changes/issues before doing any updates.