Quick & Easy: Install or Update Jellyfin Docker Container
Install
docker pull jellyfin/jellyfin:latestdocker run --name jellyfin -d --restart=unless-stopped -v /home/$USER/jellyfin_config:/config -v /data:/media --net=host jellyfin/jellyfin:latest
Update
docker stop jellyfindocker rm jellyfindocker pull jellyfin/jellyfin:latestdocker run --name jellyfin --restart=unless-stopped -d -v /home/$USER/jellyfin_config:/config -v /data:/media --net=host jellyfin/jellyfin:latest