update selenoid

This commit is contained in:
kev 2021-08-04 13:33:00 +08:00
parent 2dec76638f
commit 2a713456d3
2 changed files with 5 additions and 4 deletions

View File

@ -17,7 +17,7 @@ selenoid/
│ ├── config/
│ │ └── browsers.json
│ ├── logs/
│ └── video/
│ └── videos/
└── docker-compose.yml
```
@ -76,7 +76,8 @@ capabilities = {
"version": "92.0",
"selenoid:options": {
"enableVNC": True,
"enableVideo": False,
"enableVideo": True,
"videoName": "test.mp4",
},
"goog:chromeOptions": {
"args": ["--disable-gpu"],

View File

@ -6,7 +6,7 @@ services:
image: aerokube/selenoid:latest-release
command: |
-conf config/browsers.json
-video-output-dir video
-video-output-dir videos
-log-output-dir logs
-limit 4
-timeout 5m
@ -19,7 +19,7 @@ services:
- ./data:/opt/selenoid
environment:
- TZ=UTC
- OVERRIDE_VIDEO_OUTPUT_DIR=$PWD/data/video
- OVERRIDE_VIDEO_OUTPUT_DIR=$PWD/data/videos
working_dir: /opt/selenoid
restart: unless-stopped