amrsa1 / Android-Emulator-image

The use of this Docker image simplifies the process of running an Android emulator within a Docker container
MIT License
112 stars 52 forks source link
android automation containers docker docker-image emulator testing

Android emulator Image

The use of this Docker image simplifies the process of running an Android emulator within a Docker container. This can be achieved through a few basic commands or by utilizing a simple Docker compose file. The image includes the latest version of the Android SDK, as well as the Appium server, which allows for the execution of mobile automation tests. for more info --> https://medium.com/@Amr.sa/running-android-emulator-in-a-docker-container-19ecb68e1909

Feature

Setup

Manual execution

Down below is the list of the main scripts to launch the relevant service, certain environment variables should be passed during starting the container.

  1. build the docker image :

    docker build -t android-emulator .

    OR for customized image

    docker build \
    --build-arg ARCH=x86_64  \
    --build-arg TARGET=google_apis_playstore\
    --build-arg API_LEVEL=31 \
    --build-arg BUILD_TOOLS=31.0.0 \
    --build-arg EMULATOR_DEVICE="Nexus 6" \
    --build-arg EMULATOR_NAME=nexus \
    -t my-android-image .  
  2. Start your container:

    docker run -it --privileged -d -p 5900:5900 --name androidContainer --privileged android-emulator  
  3. Launch the appium session :

    docker exec --privileged -it androidContainer bash -c "appium -p 5900"

    OR

    docker exec --privileged  -it androidContainer bash -c "./start_appium.sh"
  4. Start the emulator in headless mode :

    docker exec --privileged -it -e EMULATOR_TIMEOUT=300 androidContainer bash -c "./start_emu_headless.sh"
  5. Starting VNC server:

    docker exec --privileged -it androidContainer bash -c "./start_vnc.sh"

Launch emulator in headed mode

  1. The following command must be used to initiate the Docker container:

    docker run -it -d -p 5900:5900 --name androidContainer -e VNC_PASSWORD=password --privileged android-emulator
  2. Instantiate the VNC service by running:

    docker exec --privileged -it androidContainer bash -c "./start_vnc.sh"
  3. Connect to the VNC server via remmina or any VNC viewer, on:

    localhost:5900
  4. Open dash terminal in vnc viewer and right the following command:

    #: ./start_emu.sh

vnc gif

*Note:

Using Docker-compose

The Docker Compose file simplifies the process of starting the service. It includes multiple services, such as launching the emulator with the Appium instance or launching the VNC server. You have the flexibility to enable or disable any service based on your needs.

docker compose up

Environments

When manually starting the container, ensure to set the necessary environment variables for proper operation

Environments Description Required Service
APPIUM_PORT Port for the appium instance optional Android
VNC_PASSWORD Password needed to connect to VNC Server optional VNC
OSTYPE linux or macos/darwin optional Android
EMULATOR_TIMEOUT emulator booting up timeoue, default 240 second optional Android
HW_ACCEL_OVERRIDE Pass aceel options e.g "-accel on" or "-aceel off" optional Android

Kill the container