Skip to content

Instantly share code, notes, and snippets.

@HoussemDellai
Created December 30, 2019 18:47
Show Gist options
  • Save HoussemDellai/ec74c4b0e133306a51f567238073b00e to your computer and use it in GitHub Desktop.
Save HoussemDellai/ec74c4b0e133306a51f567238073b00e to your computer and use it in GitHub Desktop.
version: "3"
services:
selenium-hub:
image: selenium/hub:3.141.59-yttrium
container_name: selenium-hub
ports:
- "4444:4444"
expose:
- 4444
chrome:
image: selenium/node-chrome-debug:3.141.59-yttrium
container_name: chrome
deploy:
replicas: 5
ports:
- "5900:5900"
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-yttrium
container_name: firefox
deploy:
replicas: 8
volumes:
- /dev/shm:/dev/shm
depends_on:
- selenium-hub
environment:
- HUB_HOST=selenium-hub
- HUB_PORT=4444
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment