docker-android/docker-compose.yml

96 lines
2.4 KiB
YAML
Raw Normal View History

2017-05-29 13:34:35 +01:00
# Note: It requires docker-compose 1.13.0
#
# Usage: docker-compose up -d
version: "2.2"
services:
# Selenium hub
selenium_hub:
2018-02-06 19:33:24 +00:00
image: selenium/hub:3.7.1
2017-05-29 13:34:35 +01:00
ports:
- "4444:4444"
# Real devices
real_device:
image: butomo1989/docker-android-real-device
privileged: true
depends_on:
- selenium_hub
ports:
- 6080:6080
volumes:
- ./video-real-device:/tmp/video
- /dev/bus/usb:/dev/bus/usb
- ~/.android:/root/.android
environment:
- CONNECT_TO_GRID=True
- APPIUM=true
- SELENIUM_HOST=selenium_hub
- AUTO_RECORD=True
2017-05-29 13:34:35 +01:00
# Docker-Android for Android application testing
nexus_7.1.1:
image: butomo1989/docker-android-x86-7.1.1
privileged: true
# Increase scale number if needed
scale: 1
depends_on:
- selenium_hub
- real_device
2017-05-29 13:34:35 +01:00
ports:
- 6080
2017-10-30 19:41:27 +00:00
# Change path of apk that you want to test. I use sample_apk that I provide in folder "example"
2017-07-14 19:40:14 +01:00
volumes:
2017-10-30 19:41:27 +00:00
- $PWD/example/sample_apk:/root/tmp
2017-07-14 19:40:14 +01:00
- ./video-nexus_7.1.1:/tmp/video
2017-05-29 13:34:35 +01:00
environment:
- DEVICE=Nexus 5
- CONNECT_TO_GRID=True
- APPIUM=true
- SELENIUM_HOST=selenium_hub
2017-07-14 19:40:14 +01:00
- AUTO_RECORD=True
2017-05-29 13:34:35 +01:00
# Docker-Android for mobile website testing with chrome browser
# Chrome browser exists only for version 7.0 and 7.1.1
samsung_galaxy_web_7.1.1:
image: butomo1989/docker-android-x86-7.1.1
privileged: true
# Increase scale number if needed
scale: 1
depends_on:
- selenium_hub
- real_device
2017-05-29 13:34:35 +01:00
ports:
- 6080
2017-07-14 19:40:14 +01:00
volumes:
- ./video-samsung_7.1.1:/tmp/video
2017-05-29 13:34:35 +01:00
environment:
- DEVICE=Samsung Galaxy S6
- CONNECT_TO_GRID=True
- APPIUM=true
- SELENIUM_HOST=selenium_hub
- MOBILE_WEB_TEST=True
2017-07-14 19:40:14 +01:00
- AUTO_RECORD=True
2017-05-29 13:34:35 +01:00
# Docker-Android for mobile website testing with default browser
# Default browser exists only for version 5.0.1, 5.1.1 and 6.0
samsung_galaxy_web_5.1.1:
image: butomo1989/docker-android-x86-5.1.1
privileged: true
# Increase scale number if needed
scale: 1
depends_on:
- selenium_hub
- real_device
2017-05-29 13:34:35 +01:00
ports:
- 6080
2017-07-14 19:40:14 +01:00
volumes:
- ./video-samsung_5.1.1:/tmp/video
2017-05-29 13:34:35 +01:00
environment:
- DEVICE=Samsung Galaxy S6
- CONNECT_TO_GRID=True
- APPIUM=true
- SELENIUM_HOST=selenium_hub
- MOBILE_WEB_TEST=True
2017-07-14 19:40:14 +01:00
- AUTO_RECORD=True