this post was submitted on 08 Sep 2026
132 points (97.8% liked)
Jellyfin: The Free Software Media System
9203 readers
102 users here now
Current stable release: 10.11.11
Matrix (General Information & Help)
Matrix (Off-Topic) - Come get to know the team and blow off steam!
Matrix Space - List of all the available rooms on Matrix.
Discord - Bridged to our Matrix rooms
founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Your answer only opened more questions for me so I'm going to conclude this is above my head lol.
I'm happy to provide more details if you're interested/have specific questions.
I'm running the Jellyfin app on my home kubernetes cluster -- Kubernetes (k8s) boils down to a program scheduler with a lot of big features a lot of IT folks like. K8s runs the Jellyfin program as a "pod", and it attaches remote storage to the pod. The storage is your videos/media, but also the Jellyfin database (as a sqlite file).
There are better, more reliable ways to provide a database to an app though. Jellyfin + the sqlite database is basically just a file and that file doesn't exactly play nice when it is stored remotely. Instead, the app could use a software interface (API) that allows many kinds of databases -- sqlite OR a dedicated database service (e.g. Postgres), and there are a lot of advantages to that.