Skip to content

Commit

Permalink
Using selenoid/video-recorder:latest-release image by default (fixes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
vania-pooh committed Oct 29, 2018
1 parent f0186c4 commit 6059096
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/cli-flags.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ The following flags are supported by `selenoid` command:
-video-output-dir string
Directory to save recorded video to (default "video")
-video-recorder-image string
Image to use as video recorder (default "selenoid/video-recorder")
Image to use as video recorder (default "selenoid/video-recorder:latest-release")
----

For example:
Expand Down
2 changes: 1 addition & 1 deletion docs/video.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To use this feature you should:
. Pull video recorder image once:
+
```
$ docker pull selenoid/video-recorder
$ docker pull selenoid/video-recorder:latest-release
```

. When running Selenoid **in Docker container**:
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func init() {
flag.BoolVar(&captureDriverLogs, "capture-driver-logs", false, "Whether to add driver process logs to Selenoid output")
flag.BoolVar(&disablePrivileged, "disable-privileged", false, "Whether to disable privileged container mode")
flag.StringVar(&videoOutputDir, "video-output-dir", "video", "Directory to save recorded video to")
flag.StringVar(&videoRecorderImage, "video-recorder-image", "selenoid/video-recorder", "Image to use as video recorder")
flag.StringVar(&videoRecorderImage, "video-recorder-image", "selenoid/video-recorder:latest-release", "Image to use as video recorder")
flag.StringVar(&logOutputDir, "log-output-dir", "", "Directory to save session log to")
flag.Parse()

Expand Down

0 comments on commit 6059096

Please sign in to comment.