Last active
February 1, 2018 19:51
-
-
Save diemol/c7e45a362bbb6463f882854733e4a661 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
version: '2.2' | |
services: | |
zalenium: | |
image: "dosel/zalenium" | |
container_name: zalenium | |
hostname: zalenium | |
tty: true | |
privileged: true | |
volumes: | |
- /tmp/videos:/home/seluser/videos | |
- /var/run/docker.sock:/var/run/docker.sock | |
- /usr/bin/docker:/usr/bin/docker | |
ports: | |
- 8899:4444 | |
command: > | |
start --desiredContainers 0 | |
--maxTestSessions 2 | |
--maxDockerSeleniumContainers 15 | |
--screenWidth 1600 | |
--screenHeight 900 | |
--timeZone "Asia/Tehran" | |
--videoRecordingEnabled true | |
--sauceLabsEnabled false | |
--browserStackEnabled false | |
--testingBotEnabled false | |
--startTunnel false | |
--keepOnlyFailedTests true | |
--debugEnabled true | |
environment: | |
- HOST_UID | |
- HOST_GID |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment