Seems like when this docker image is installed in unraid and used to be paired with a klipper printer, it keeps complaining about Janus not being installed, and making the camera be stuck on 1FPS mode.
Running this installs Janus on the docker container:
#Enters the docker container
docker exec -it obico bash
#Installs Janus
apt-get update && apt-get install -y janus
#Verifies Janus is installed
which janus
Is it possible to include this in the docker image instead of having to do this manually?
I am not too sure if this will fix the issue either considering that after installing it manually there are still errors but maybe this is a step in the right direction?