Hey selfhosters, what are you selfhosting?

Ratz@chatsubo.hiteklolife.net to Selfhosted@lemmy.world – 399 points –

  • Nextcloud + OnlyOffice
  • *arr media management series (Lidarr, Sonarr, etc)
  • Gitea
  • Vaultwarden
  • PiHole
  • Jellyfin
  • Wiki-js
  • Lemmy
  • Prometheus/Grafana/Loki

Currently all containerised running on a debian VM on a Rockylinux Qemu/KVM hypervisor. Initially I was using rocky+podman but inevitably hit something I wanted to run that just straight up needed docker and was too much effort to try and get working. 🤷

Hardware is an circa 2012 gaming machine with a few ZFS raids for all of my Linux ISOs. It lives an extremely tortured existence and longs for the sweet release of death.

Toying with the idea of migrating it all to on-prem virtualised kubernetes cluster using helm charts to manage the stacks and using NFS mounts for persistent storage because I hate myself (and to upskill I guess)

What about you?

175

You are viewing a single comment

Mainly selected podman for the security, it doesn't rely on a daemon and supported rootless containers before docker did. Easy to just come up with a pattern where you can minimise the risk of container breakout by having a user for each container stack to provide even more isolation. You can do the same with docker these days I think, each user just runs their own copy of the docker daemon. The aim of the project was to achieve 1:1 compatibility, I think it's pretty close these days. It's also native to the Redhat family so could avoid using the community edition of Docker.

Thanks! I'll check it out. I am in the process of building a new hosting machine (my old QNAP NAS died) so I think now's a good time as any to switch to a new container tech.

Docker is still what 95% of people think of when you talk containers and you may encounters issues, particularly running things rootlessly as it's not a use-case that developers necessarily support. Not to discourage you at all, experimentation is great, but be prepared for thorns. 👍