This repository has been archived by the owner on Dec 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 332
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #240 from vania-pooh/master
Added documentation on starting Selenoid under Windows (fixes #239)
- Loading branch information
Showing
2 changed files
with
10 additions
and
0 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
== Selenoid under Windows | ||
|
||
While we normally recommend to start Selenoid using http://aerokube.com/cm/latest[Configuration Manager], it is possible to start it under Windows manually. The main difference from Unix operating systems is how volumes are mounted. In any Windows paths back slashes (`\`) should be replaced by forward slashes (`/`) and drive letter should be lower cased. For example for `C:\Users\admin` we get `c:/Users/admin`. So assuming that configuration file is located at `C:\selenoid` a typical startup command can look like: | ||
|
||
> docker run -d --name selenoid -v //var/run/docker.sock:/var/run/docker.sock -p 4444:4444 -v c:/selenoid:/etc/selenoid:ro aerokube/selenoid:latest-release | ||
|
||
The most strange part here is `-v //var/run/docker.sock:/var/run/docker.sock` but this is how (with two forward slashes) Docker socket should be mounted in Docker for Windows. | ||
|
||
|