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