From 4d897dae9fc6e73ccd9cb1d2f4a439fd5d14f146 Mon Sep 17 00:00:00 2001 From: Diego Molina Date: Sat, 24 Jun 2017 19:24:42 +0200 Subject: [PATCH] Updating documentation, fixing #503 --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 19203f7a08..8b164685c4 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,16 @@ $ docker run -d -p 4444:4444 -e JAVA_OPTS=-Xmx512m --name selenium-hub selenium/ You can pass `SE_OPTS` variable with additional commandline parameters for starting a hub or a node. ``` bash -$ docker run -d -p 4444:4444 -e SE_OPTS="-debug true" --name selenium-hub selenium/hub:3.2.0-actinium +$ docker run -d -p 4444:4444 -e SE_OPTS="-debug true" --name selenium-hub selenium/hub:3.4.0-dysprosium +``` + +### HUB_PORT_444_TCP_ADDR and HUB_PORT_444_TCP_PORT Selenium Node Configuration options + +You can pass `HUB_PORT_444_TCP_ADDR` and `HUB_PORT_444_TCP_PORT` options to provide the hub address to a node when needed. + +``` bash +$ docker run -d -p 4444:4444 -e HUB_PORT_4444_TCP_ADDR=10.10.1.10 -e HUB_PORT_4444_TCP_PORT=4444 \ + --name selenium-hub selenium/hub:3.4.0-dysprosium ``` ### PHANTOMJS_OPTS PhantomJS Configuration Options