Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.60 KB | None | 0 0
  1. proxy_server:
  2. image: openstf/stf
  3. ports:
  4. - "7100:7100"
  5. command: stf poorxy --port 7100 --app-url http://172.19.195.198:3100 --auth-url http://172.19.195.198:3200 --api-url http://172.19.195.198:3700 --websocket-url http://172.19.195.198:3600 --storage-url http://172.19.195.198:3500 --storage-plugin-image-url http://172.19.195.198:3400 --storage-plugin-apk-url http://172.19.195.198:3300
  6.  
  7. rethinkdb:
  8. image: rethinkdb:2.3
  9. ports:
  10. - "8080:8080"
  11. - "28015:28015"
  12. - "29015:29015"
  13. restart: always
  14. command: "rethinkdb --bind all --cache-size 2048"
  15.  
  16. app:
  17. image: openstf/stf
  18. links:
  19. - rethinkdb
  20. ports:
  21. - "3100:3000"
  22. restart: always
  23. command: stf app --port 3000 --secret asdfg123 --auth-url http://172.19.195.198:7100/auth/mock/ --websocket-url http://172.19.195.198:3600/
  24.  
  25. auth:
  26. image: openstf/stf
  27. ports:
  28. - "3200:3000"
  29. restart: always
  30. command: stf auth-mock --port 3000 --secret asdfg123 --app-url http://172.19.195.198:7100/
  31.  
  32. storage-temp:
  33. image: openstf/stf
  34. ports:
  35. - "3500:3000"
  36. restart: always
  37. command: stf storage-temp --port 3000 --save-dir /data
  38.  
  39. storage-plugin-image:
  40. image: openstf/stf
  41. ports:
  42. - "3400:3000"
  43. restart: always
  44. command: stf storage-plugin-image --port 3000 --storage-url http://172.19.195.198:7100/
  45.  
  46. storage-plugin-apk:
  47. image: openstf/stf
  48. ports:
  49. - "3300:3000"
  50. restart: always
  51. command: stf storage-plugin-apk --port 3000 --storage-url http://172.19.195.198:7100/
  52.  
  53. websocket:
  54. image: openstf/stf
  55. links:
  56. - rethinkdb
  57. ports:
  58. - "3600:3000"
  59. restart: always
  60. command: stf websocket --port 3000 --secret asdfg123 --storage-url http://172.19.195.198:7100/ --connect-sub tcp://172.19.195.198:7150 --connect-push tcp://172.19.195.198:7170
  61.  
  62. triproxy-app:
  63. image: openstf/stf
  64. ports:
  65. - "7150:7150"
  66. - "7160:7160"
  67. - "7170:7170"
  68. restart: always
  69. command: stf triproxy app --bind-pub "tcp://*:7150" --bind-dealer "tcp://*:7160" --bind-pull "tcp://*:7170"
  70.  
  71. triproxy-dev:
  72. image: openstf/stf
  73. ports:
  74. - "7250:7250"
  75. - "7260:7260"
  76. - "7270:7270"
  77. restart: always
  78. command: stf triproxy dev --bind-pub "tcp://*:7250" --bind-dealer "tcp://*:7260" --bind-pull "tcp://*:7270"
  79.  
  80. processor:
  81. image: openstf/stf
  82. links:
  83. - rethinkdb
  84. restart: always
  85. command: stf processor proc001 --connect-app-dealer tcp://172.19.195.198:7160 --connect-dev-dealer tcp://172.19.195.198:7260
  86.  
  87. processor-2:
  88. image: openstf/stf
  89. links:
  90. - rethinkdb
  91. restart: always
  92. command: stf processor proc002 --connect-app-dealer tcp://172.19.195.198:7160 --connect-dev-dealer tcp://172.19.195.198:7260
  93.  
  94. reaper:
  95. image: openstf/stf
  96. links:
  97. - rethinkdb
  98. restart: always
  99. command: stf reaper dev --connect-push tcp://172.19.195.198:7270 --connect-sub tcp://172.19.195.198:7150 --heartbeat-timeout 30000
  100.  
  101. api:
  102. image: openstf/stf
  103. links:
  104. - rethinkdb
  105. ports:
  106. - "3700:3000"
  107. restart: always
  108. command: stf api --port 3000 --secret asdfg123 --connect-sub tcp://172.19.195.198:7150 --connect-push tcp://172.19.195.198:7170
  109. ---------
  110. adbd1:
  111. image: sorccu/adb
  112. privileged: true
  113. ports:
  114. - "10001:5037"
  115. restart: always
  116.  
  117. provider:
  118. image: openstf/stf
  119. links:
  120. - adbd1
  121. ports:
  122. - "7700-7800:7700-7800"
  123. restart: always
  124. command: stf provider --public-ip 172.19.195.198 --min-port 7700 --max-port 7800 --adb-host 172.19.195.198 --adb-port 10001 --allow-remote --connect-sub tcp://172.19.195.198:7250 --connect-push tcp://172.19.195.198:7270 --group-timeout 900 --storage-url http://172.19.195.198:7100/ --vnc-initial-size 600x800
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement