-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added selenium grid docker-compose configuration. Need to figure out the networking issues.
- Loading branch information
Bill Smith
committed
Mar 12, 2019
1 parent
1875a00
commit 15483e5
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
version: "3.7" | ||
|
||
services: | ||
selenium-hub: | ||
image: selenium/hub:3.141.59-krypton | ||
container_name: selenium-hub | ||
ports: | ||
- "4444:4444" | ||
chrome: | ||
image: selenium/node-chrome:3.141.59-krypton | ||
volumes: | ||
- /dev/shm:/dev/shm | ||
depends_on: | ||
- selenium-hub | ||
environment: | ||
- HUB_HOST=selenium-hub | ||
- HUB_PORT=4444 | ||
firefox: | ||
image: selenium/node-firefox:3.141.59-krypton | ||
volumes: | ||
- /dev/shm:/dev/shm | ||
depends_on: | ||
- selenium-hub | ||
environment: | ||
- HUB_HOST=selenium-hub | ||
- HUB_PORT=4444 |