I'll take you through the steps to get Selenium Grid Docker images up and running on Windows.
There are several ways to get this done by installing Vagrant (or like tool) and Docker for Windows. Luckily Docker has packaged this up for us in Kitematic.
- After its downloaded - start the Docker Quickstart Terminal
- Now that terminal is started; I've called out where to find your host address that you will use to access the docker container instance.
- Lets get Selenium grid up and running.
- Create a directory: $ mkdir compose
- $ cd compose
- $ notepad docker-compose.yml
- copy and paste
- hub: image: selenium/hub ports: - "4444:4444"chrome: image: selenium/node-chrome links: - hubfirefox: image: selenium/node-firefox links: - hub
- Save
- Run: $ docker-compose up
- You can see the selenium-grid at <instance ip>
- http://<host address>:4444/grid/console
- e.g. http://192.168.99.100:4444/grid/console

-