docker-android/README_GENYMOTION.md
2018-11-29 09:07:26 +01:00

1.3 KiB

Genymotion Cloud

You can easily scale your Appium tests on Genymotion Android virtual devices in the cloud. They are available on SaaS or as virtual images on AWS, GCP or Alibaba Cloud.

  1. On SaaS
    Use device.json to define the device to start. You can specify the port on which the device will start so you don't need to change the device name in your tests every time you need to run those tests. Then run following command

    export USER="xxx"
    export PASS="xxx"
    export LICENSE="xxx"
    
    docker run -it --rm -p 4723:4723 -v $PWD/genymotion/example/sample_devices:/root/tmp -e TYPE=SaaS -e USER=$USER -e PASS=$PASS -e LICENSE=$LICENSE butomo1989/docker-android-genymotion
    

Docker-Android supports Genymotion Cloud

  1. On PaaS (AWS)
    Use aws.json to define configuration of EC2 instance and run following command:

    docker run -it --rm -p 4723:4723 -v $PWD/genymotion/example/sample_devices:/root/tmp -v ~/.aws:/root/.aws -e TYPE=aws butomo1989/docker-android-genymotion
    

You can also use this docker-compose file.