Open davemackintosh opened 6 years ago
Had the same problem here. But then it worked via:
docker exec -ti adbd sh
So it maybe some kind of network error caused by running another container via docker run
.
The complete list of commands:
docker run -d --privileged -v /dev/bus/usb:/dev/bus/usb --name adbd sorccu/adb
docker exec -ti adbd sh
And then, from inside the container:
fastboot devices
This also works:
docker exec -ti adbd fastboot devices
I love having adb in a docker image, this works great but I couldn't get fastboot to work.
This is my script (that is in my $PATH) to run fastboot
I don't see devices but when I use the system installed version I do. Any ideas?