Created
August 7, 2019 13:39
-
-
Save valenso/6a480ef4f9ab6a43ab87f9dcac17a078 to your computer and use it in GitHub Desktop.
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
echo "version: '3' | |
services: | |
chrome: | |
image: selenium/node-chrome:3.141.59-selenium | |
volumes: | |
- /dev/shm:/dev/shm | |
depends_on: | |
- hub | |
environment: | |
HUB_HOST: hub | |
hub: | |
image: selenium/hub:3.141.59-selenium | |
ports: | |
- '4444:4444' | |
environment: | |
- GRID_TIMEOUT=90000 | |
- GRID_BROWSER_TIMEOUT=90000 | |
- NODE_MAX_SESSION=2" > docker-compose.yml | |
cat docker-compose.yml | |
docker-compose up -d --scale chrome=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment