2024-07-26, 04:32 PM
You set those two variables, but the container should come with its own. On the command line this command will list out all the environment variables, including any you added in the docker config.
I don't know about Unraid, but top/htop/btop on the host should list all the processes spawned by a container. You could also open a bash shell into the container. The container may not have top installed, but the LSIO image of Jellyfin does allow you to install packages.
That should drop you in the container's shell. If top is not installed.
Code:
sudo docker exec jellyfin env
I don't know about Unraid, but top/htop/btop on the host should list all the processes spawned by a container. You could also open a bash shell into the container. The container may not have top installed, but the LSIO image of Jellyfin does allow you to install packages.
Code:
sudo docker exec -t jellyfin bash
That should drop you in the container's shell. If top is not installed.
Code:
sudo apt install top