Guest User

Untitled

a guest
Jul 18th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. version: "2.4"
  2. services:
  3. selenium-hub:
  4. image: selenium/hub
  5. container_name: selenium-service
  6. ports:
  7. - "4444:4444"
  8. chrome:
  9. image: selenium/node-chrome
  10. volumes:
  11. - /dev/shm:/dev/shm
  12. depends_on:
  13. - selenium-hub
  14. environment:
  15. - HUB_HOST=selenium-hub
  16. - HUB_PORT=4444
  17. vsts-agent:
  18. image: joegroner/vsts-agent
  19. environment:
  20. - VSTS_ACCOUNT=<VSTS account name>
  21. - VSTS_TOKEN=<VSTS PAT>
Add Comment
Please, Sign In to add comment