docker-android/genymotion/example/geny.yml

43 lines
1 KiB
YAML
Raw Permalink Normal View History

2018-05-29 23:54:06 +01:00
# 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.14.0-curium
2018-05-29 23:54:06 +01:00
ports:
- 4444:4444
# Please stop this container by using docker stop instead of docker-compose stop
2018-11-29 08:16:30 +00:00
saas:
2019-06-13 16:47:51 +01:00
image: budtmo/docker-android-genymotion
2018-05-29 23:54:06 +01:00
depends_on:
- selenium_hub
privileged: true
2018-05-29 23:54:06 +01:00
volumes:
2018-06-27 23:47:49 +01:00
- $PWD/sample_apk:/root/tmp/sample_apk
2018-06-12 00:05:35 +01:00
- $PWD/sample_devices:/root/tmp
2018-05-29 23:54:06 +01:00
environment:
- TYPE=SaaS
- TEMPLATE=/root/tmp/devices.json
- USER=$USER
- PASS=$PASS
2018-06-21 23:34:43 +01:00
- CONNECT_TO_GRID=true
# Please stop this container by using docker stop instead of docker-compose stop
aws:
2019-06-13 16:47:51 +01:00
image: budtmo/docker-android-genymotion
depends_on:
- selenium_hub
privileged: true
volumes:
- ~/.aws:/root/.aws
- $PWD/sample_apk:/root/tmp/sample_apk
- $PWD/sample_devices:/root/tmp
environment:
- TYPE=aws
- TEMPLATE=/root/tmp/aws.json
- CONNECT_TO_GRID=true