Skip to content

Commit 4b9f892

Browse files
committed
Updating docs
1 parent e0a085c commit 4b9f892

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ $ docker network rm grid
313313
### Execution with Standalone roles
314314

315315
```bash
316-
docker run --rm -ti --name selenium-docker -p 4444:4444 \
316+
docker run --rm --name selenium-docker -p 4444:4444 \
317317
-v ${PWD}/config.toml:/opt/bin/config.toml \
318318
-v /path/on/your/host/machine:/opt/selenium/assets \
319319
selenium/standalone-docker:4.0.0-beta-3-20210426

StandaloneDocker/config.toml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,26 @@
1+
[node]
2+
session-timeout = 30
13
[docker]
24
# Configs have a mapping between the Docker image to use and the capabilities that need to be matched to
35
# start a container with the given image.
46
configs = [
57
"selenium/standalone-firefox:4.0.0-beta-3-20210426", "{\"browserName\": \"firefox\"}",
68
"selenium/standalone-chrome:4.0.0-beta-3-20210426", "{\"browserName\": \"chrome\"}",
7-
"selenium/standalone-opera:4.0.0-beta-3-20210426", "{\"browserName\": \"operablink\"}"
9+
"selenium/standalone-opera:4.0.0-beta-3-20210426", "{\"browserName\": \"opera\"}",
10+
"selenium/standalone-edge:4.0.0-beta-3-20210426", "{\"browserName\": \"MicrosoftEdge\"}"
811
]
912

1013
# URL for connecting to the docker daemon
1114
# host.docker.internal works for macOS and Windows.
1215
# Linux could use --net=host in the `docker run` instruction or 172.17.0.1 in the URI below.
1316
# To have Docker listening through tcp on macOS, install socat and run the following command
1417
# socat -4 TCP-LISTEN:2375,fork UNIX-CONNECT:/var/run/docker.sock
15-
host = "tcp://host.docker.internal:2375"
18+
url = "http://host.docker.internal:2375"
19+
# Docker imagee used for video recording
20+
video-image = "selenium/video:ffmpeg-4.3.1-20210426"
21+
22+
# Uncomment the following section if you are running the node on a separate VM
23+
# Fill out the placeholders with appropriate values
24+
#[server]
25+
#host = <ip-from-node-machine>
26+
#port = <port-from-node-machine>

0 commit comments

Comments
 (0)