docker-android
docker-android copied to clipboard
system UI is not responding when starts the container
💬 Questions and Help
Whenever I am starting the container, after android emulator getting started - system UI is not responding error occurs. In Android emulator we have provision to select Graphics to Hardware GLES 2.0. But here how to pass this setting while using docker image
Here is the My Dockerfile:
FROM budtmo/docker-android-x86-11.0
ENV DEVICE="Samsung Galaxy S6"
ENV APPIUM=True
ENV RELAXED_SECURITY=True
ENV CONNECT_TO_GRID=True
ENV APPIUM_HOST=127.0.0.1
ENV APPIUM_PORT=4723
Command to Build:
docker build -f Dockerfile -t android-appium-container .
Command to Run:
docker run --privileged -it --rm -p 6080:6080 -p 4723:4723 android-appium-container
Kindly Help me.