Last active
May 23, 2016 15:36
-
-
Save jk/509fe2a5baff8e4da1cb6eec576d4127 to your computer and use it in GitHub Desktop.
Docker Compose config file for a Selenium Cluster
This file contains hidden or 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
selenium-hub: | |
image: selenium/hub | |
restart: always | |
ports: | |
- 4444:4444 | |
selenium-node-chrome: | |
image: selenium/node-chrome | |
links: | |
- selenium-hub:hub | |
selenium-node-firefox: | |
image: selenium/node-firefox | |
links: | |
- selenium-hub:hub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment