this post was submitted on 10 Jan 2024
63 points (94.4% liked)

Linux

47231 readers
761 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

Hello there lemmings! Finally I have taken up the courage to buy a low power mini PC to be my first homeserver (Ryzen 5500U, 16GB RAM, 512 SSD, already have 6TB external HDD tho). I have basically no tangible experience with Debian or Fedora-based system, since my daily drivers are Arch-based (although I'm planning to switch my laptop over to Fedora).

What's your experiences with Debian and Rocky as a homeserver OS?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 6 points 8 months ago (4 children)

Make sure you use a docker image that tracks the stable version of Jellyfin. The official image jellyfin/jellyfin tracks unstable. Not all plugins work with unstable and switching to stable later is difficult. This trips lots of people and locks them into unstable because by the time they figure it out they've customized their collection a lot.

The linuxserver/jellyfin image carries stable versions but you have to go into the "Tags" tab and filter for 10. to find them (10.8.13 pushed 16 days ago is the latest right now).

To use that version you say "image: linuxserver/jellyfin:10.8.13" in your docker compose instead of "linuxserver/jellyfin:latest".

This approach has the added benefit of letting you control when you want to update Jellyfin, as opposed to :latest which will get updated whenever the container (re)starts if there's a newer image available.

While upgrading your images constantly sounds good in theory, eventually you will see that sometimes the new versions will break (especially if they're tracking unstable versions). When that happens you will want to go back to a known good version.

What I do is go look for tags every once in a while and if there's a newer version I comment-out the previous "image:" line and add one with the new version, then destroy and recreate the container (the data will survive because you configure it to live on a mounted volume, not inside the container), then recreate with the new version. If there's any problem I can destroy it, switch back to the old version, and raise it again.

[–] idefix 2 points 8 months ago (1 children)

The official image jellyfin/jellyfin tracks unstable

Why did they make that choice? I am on this version right now, didn't know it was unstable. I found it very difficult to have information regarding the docker images in general, it's a pity we don't have a few lines explaining what the content is.

[–] [email protected] 2 points 8 months ago

It's more like "latest" tracks unstable, because unstable evolves much faster and it puts out versions more often. Unfortunately there's a practice going around that makes people just the :latest tag for everything and they don't always stop to consider the implications (which may be different for each project).

[–] [email protected] 2 points 8 months ago

Oh that explains the 2 linuxserver and official jellyfin then. It was always kinda strange to me.

Luckily my uni hosted a docker course and binge watched a beginner Linkedin Learning too about it, but I'm really grateful for your in-depth guide. Guys like you really make Lemmy the old Reddit you used to have and cherish in your hearts. :3

[–] [email protected] 1 points 8 months ago (1 children)

I thought the official jellyfin images on the versioned tags (like “10.8.13”) were stable - are they not?

[–] [email protected] 2 points 8 months ago

Oh right, I filtered for "10." and got an unstable image and thought they don't have them. Yeah those are stable too.

[–] [email protected] 1 points 8 months ago

The official image jellyfin/jellyfin tracks unstable

Huh? That doesn't appear to be the case. jellyfin/jellyfin:latest, which is what they tell you to use in the installation instructions. gives me 10.8.13 which appears to be the latest stable release.

There are newer and unstable versions available in dockerhub as well, but latest doesn't give you those. After all latest is just a tag with no special meaning of itself, it doesn't necessarly give you the most recent build.