You've already forked docker-android
mirror of
https://github.com/izzy2lost/docker-android.git
synced 2026-03-10 11:37:45 -07:00
9 lines
178 B
Bash
9 lines
178 B
Bash
#!/bin/bash
|
|
|
|
if [ -z "$REAL_DEVICE"]; then
|
|
echo "Container is using android emulator"
|
|
else
|
|
echo "Starting android screen mirro..."
|
|
java -jar /root/asm.jar $ANDROID_HOME
|
|
fi
|