From 7bce7374472a0129a60296382d44a216075af9b1 Mon Sep 17 00:00:00 2001 From: stazdx Date: Fri, 24 Aug 2018 17:49:10 -0500 Subject: [PATCH 1/2] Enable nested virtualization on Azure --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index dbf2ac0..272fa96 100644 --- a/README.md +++ b/README.md @@ -370,6 +370,11 @@ All logs inside container are stored under folder **/var/log/supervisor**. you c docker exec -it android-container tail -f /var/log/supervisor/docker-android.stdout.log ``` +Running on Azure +---------------- +Make sure that the nodes, pods, containers for your emulators are generated within a **VM** of series **Dv3** or **Ev3**. +Reference: https://docs.microsoft.com/en-us/azure/virtual-machines/windows/nested-virtualization + Special Thanks -------------- - [Gian Christanto] for creating a great logo! From 12391277e69da3bc6964a38a0c82a270e10721ae Mon Sep 17 00:00:00 2001 From: Boni Garcia Date: Mon, 27 Aug 2018 09:31:06 +0200 Subject: [PATCH 2/2] Fix chromedriver version for Android 5.0.1 --- README.md | 2 +- release.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 272fa96..4da8807 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ List of Docker images |OS |Android |API |Browser |Browser version |Chromedriver |Image |Size | |:---|:---|:---|:---|:---|:---|:---|:---| -|Linux|5.0.1|21|browser|37.0|2.12|butomo1989/docker-android-x86-5.0.1|[![](https://images.microbadger.com/badges/image/butomo1989/docker-android-x86-5.0.1.svg)](https://microbadger.com/images/butomo1989/docker-android-x86-5.0.1 "Get your own image badge on microbadger.com")| +|Linux|5.0.1|21|browser|37.0|2.21|butomo1989/docker-android-x86-5.0.1|[![](https://images.microbadger.com/badges/image/butomo1989/docker-android-x86-5.0.1.svg)](https://microbadger.com/images/butomo1989/docker-android-x86-5.0.1 "Get your own image badge on microbadger.com")| |Linux|5.1.1|22|browser|39.0|2.13|butomo1989/docker-android-x86-5.1.1|[![](https://images.microbadger.com/badges/image/butomo1989/docker-android-x86-5.1.1.svg)](https://microbadger.com/images/butomo1989/docker-android-x86-5.1.1 "Get your own image badge on microbadger.com")| |Linux|6.0|23|browser|44.0|2.18|butomo1989/docker-android-x86-6.0|[![](https://images.microbadger.com/badges/image/butomo1989/docker-android-x86-6.0.svg)](https://microbadger.com/images/butomo1989/docker-android-x86-6.0 "Get your own image badge on microbadger.com")| |Linux|7.0|24|chrome|51.0|2.23|butomo1989/docker-android-x86-7.0|[![](https://images.microbadger.com/badges/image/butomo1989/docker-android-x86-7.0.svg)](https://microbadger.com/images/butomo1989/docker-android-x86-7.0 "Get your own image badge on microbadger.com")| diff --git a/release.sh b/release.sh index 835a235..7e79e94 100755 --- a/release.sh +++ b/release.sh @@ -34,7 +34,7 @@ declare -A list_of_levels=( # The version of the Chrome browser installed on the Android emulator needs to be known beforehand # in order to chose the proper version of chromedriver (see http://chromedriver.chromium.org/downloads) declare -A chromedriver_versions=( - [5.0.1]="2.12" + [5.0.1]="2.21" [5.1.1]="2.13" [6.0]="2.18" [7.0]="2.23"