Comment on Docker question: updating container to specific version
cx40@piefed.ca 6 days ago
It’s always good practice to back up your data before doing an upgrade. But in case you need it, you can certainly do a minor version update through compose. If you already have that set up, it’ll probably be the easier route.
Your compose file should have a line that looks like this:
image: jellyfin/jellyfin
possibly with a version number. You can specify which version you want by changing that line. For example:
image: jellyfin/jellyfin:10.10.7
You can check which versions are available here.
ook@discuss.tchncs.de 6 days ago
This looks simple enough, thanks for taking the time to write that out for me!
WhyJiffie@sh.itjust.works 5 days ago
don’t forget to recreate the container after editing the file, or else you’ll keep running your previous Jellyfin version. “docker compose start” does not do it, “docker compose up” does when it detects a change.
ook@discuss.tchncs.de 5 days ago
Good point, thanks!