Created
June 13, 2017 22:12
-
-
Save evantobin/306d699a68a4a6bae3d4302686604887 to your computer and use it in GitHub Desktop.
docker compose for openstf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rethinkdb: | |
image: rethinkdb:2.3 | |
ports: | |
- "8080:8080" | |
- "28015:28015" | |
- "29015:29015" | |
restart: always | |
volumes: | |
- "/srv/rethinkdb:/data" | |
command: "rethinkdb --bind all --cache-size 2048" | |
adbd: | |
image: sorccu/adb | |
privileged: true | |
ports: | |
- "5037:5037" | |
restart: always | |
volumes: | |
- "/dev/bus/usb:/dev/bus/usb" | |
stf-local: | |
image: openstf/stf | |
links: | |
- rethinkdb | |
- adbd | |
ports: | |
- "7100:7100" | |
- "7110:7110" | |
- "7120:7120" | |
- "7400-7500:7400-7500" | |
restart: always | |
command: stf local --public-ip 127.0.0.1 --provider-min-port 7400 --provider-max-port 7500 --adb-host adbd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment