Skip to content

Instantly share code, notes, and snippets.

@jk
Last active May 23, 2016 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jk/509fe2a5baff8e4da1cb6eec576d4127 to your computer and use it in GitHub Desktop.
Save jk/509fe2a5baff8e4da1cb6eec576d4127 to your computer and use it in GitHub Desktop.
Docker Compose config file for a Selenium Cluster
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