I have an Ubuntu docker image and I have installed the following packages
sudo apt install libimobiledevice6 libimobiledevice-utils
I am also running in privileged mode and mounting the /dev inside the docker container
-v /dev/:/dev/ --privileged"
However if I send
idevicepair pair
I get as answer:
"No device found, is it plugged in?"
Invoking "lsusb" inside the container also lists the device correctly.
The same packages and interactions are working fines outside docker where the device is actually found. Any ideas?Thank you!