• 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?

  • Molecular0079@lemmy.world
    link
    fedilink
    English
    arrow-up
    3
    ·
    1 year ago

    Nextcloud, Jellyfin, my own personal photography website, and a Valheim server, all done via docker-compose because I haven’t spent the time to learn other container tech yet. I’ve been hearing a lot about podman, what are the benefits over docker for you?

    • Ratz@chatsubo.hiteklolife.netOP
      link
      fedilink
      English
      arrow-up
      6
      ·
      1 year ago

      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.

      • Molecular0079@lemmy.world
        link
        fedilink
        English
        arrow-up
        3
        ·
        1 year ago

        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.

        • Ratz@chatsubo.hiteklolife.netOP
          link
          fedilink
          English
          arrow-up
          4
          ·
          1 year ago

          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. 👍