From 5e51ccb3e408df1c1558a6791836076679ca5ae3 Mon Sep 17 00:00:00 2001 From: Everton Date: Thu, 29 Jun 2017 21:27:52 +1000 Subject: [PATCH] Update README.md with the correct parameters to be used with Selenium Grid. Replace ocurrences that indicate the port number 444 for the correct port number 4444. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8b164685c4..c73005f72a 100644 --- a/README.md +++ b/README.md @@ -84,9 +84,9 @@ You can pass `SE_OPTS` variable with additional commandline parameters for start $ 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 +### HUB_PORT_4444_TCP_ADDR and HUB_PORT_4444_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. +You can pass `HUB_PORT_4444_TCP_ADDR` and `HUB_PORT_4444_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 \