Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

adb

debian:stable-slim-based dockerization of the Android Debug Bridge

Note: This version uses the debian adb package only -- previously I was getting the code directly from google's android platform utils for linux release and including other parts of the platform utils in this images.

The source code for this image is hosted on GitHub in the backplane/conex repo.

Usage

Interactive

something like this... still working on the params

adb() {
  docker run \
    --rm \
    --interactive \
    --tty \
    --device "/dev/bus/usb/001/004" \
    --volume "$(pwd):/work" \
    "backplane/adb" \
    "$@"
}