Cleaned up

This commit is contained in:
butomo1989
2018-06-12 01:05:35 +02:00
parent 68d0c2fc81
commit d6b69863ca
5 changed files with 16 additions and 4 deletions
+30
View File
@@ -0,0 +1,30 @@
# Note: It requires docker-compose 1.13.0
#
# Usage: docker-compose up -d
version: "2.2"
services:
# Selenium hub
selenium_hub:
image: selenium/hub:3.12.0-americium
ports:
- 4444:4444
# Please stop this container by using docker stop instead of docker-compose stop
genymotion:
image: butomo1989/docker-android-genymotion
depends_on:
- selenium_hub
ports:
- 6080:6080
- 4723:4723
volumes:
- $PWD/sample_apk:/opt
- $PWD/sample_devices:/root/tmp
environment:
- GENY_TEMPLATE=/root/tmp/devices.json
- USER=xxx
- PASS=xxx
- LICENSE=xxx
- CONNECT_TO_GRID=True
- APPIUM=true
Binary file not shown.
@@ -0,0 +1,10 @@
[
{
"template": "Samsung Galaxy S7 - 6.0.0 - API 23 - 1440x2560",
"device": "SamsungS7V6"
},
{
"template": "Google Nexus 6 - 8.0 - API 26 - 1440x2560",
"device": "Nexus6V8"
}
]