Docker-adb is a small alpine container with Android Debug Bridge. Uses sorccu/docker-adb image.
2.6K
Docker-adb is a small alpine container with Android Debug Bridge installed. Uses sorccu/docker-adb image.
I keep needing to use adb frequently whenever I want to sideload apps in an Android device. Thought it 'll be a great candidate for dockerizing since it keeps things neat and portable.
After docker pull gpavlidi/adb, follow the below 2 steps:
$ docker run --rm -it -v ${PWD}:/root/src --name adb gpavlidi/adb
$ adb kill-server
$ adb start-server
$ adb connect <ip-address-of-fire-tv>
$ adb install <apk-file-name>
# if upgrading
$ adb install -r <apk-file-name>
# list all packages
$ adb shell pm list packages
# to uninstall
$ adb uninstall -k org.xbmc.kodi
Content type
Image
Digest
Size
9.2 MB
Last updated
over 9 years ago
docker pull gpavlidi/adb