Skip to content

Commit 4d5df4e

Browse files
committed
remove remote_host param; prepare dubnium
1 parent 8805e8e commit 4d5df4e

File tree

21 files changed

+52
-56
lines changed

21 files changed

+52
-56
lines changed

Hub/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/base:3.0.0-cerium
5+
FROM selenium/base:3.0.0-dubnium
66
MAINTAINER Selenium <selenium-developers@googlegroups.com>
77

88
#========================

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME := selenium
2-
VERSION := $(or $(VERSION),$(VERSION),'3.0.0-cerium')
2+
VERSION := $(or $(VERSION),$(VERSION),'3.0.0-dubnium')
33
PLATFORM := $(shell uname -s)
44
BUILD_ARGS := $(BUILD_ARGS)
55

NodeBase/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/base:3.0.0-cerium
5+
FROM selenium/base:3.0.0-dubnium
66
MAINTAINER Selenium <selenium-developers@googlegroups.com>
77

88
ENV DEBIAN_FRONTEND noninteractive

NodeBase/entry_point.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@ function shutdown {
2020
wait $NODE_PID
2121
}
2222

23-
REMOTE_HOST_PARAM=""
2423
if [ ! -z "$REMOTE_HOST" ]; then
25-
echo "REMOTE_HOST variable is set, appending -remoteHost"
26-
REMOTE_HOST_PARAM="-remoteHost $REMOTE_HOST"
24+
>&2 echo "REMOTE_HOST variable is *DEPRECATED* in these docker containers. Please use SE_OPTS=\"-hubHost <host> -hubPort <port>\" instead!"
25+
exit 1
2726
fi
2827

2928
if [ ! -z "$SE_OPTS" ]; then
@@ -40,7 +39,6 @@ xvfb-run -n $SERVERNUM --server-args="-screen 0 $GEOMETRY -ac +extension RANDR"
4039
java ${JAVA_OPTS} -jar /opt/selenium/selenium-server-standalone.jar \
4140
-role node \
4241
-hub http://$HUB_PORT_4444_TCP_ADDR:$HUB_PORT_4444_TCP_PORT/grid/register \
43-
${REMOTE_HOST_PARAM} \
4442
-nodeConfig /opt/selenium/config.json \
4543
${SE_OPTS} &
4644
NODE_PID=$!

NodeChrome/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/node-base:3.0.0-cerium
5+
FROM selenium/node-base:3.0.0-dubnium
66
MAINTAINER Selenium <selenium-developers@googlegroups.com>
77

88
USER root

NodeChromeDebug/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/node-chrome:3.0.0-cerium
5+
FROM selenium/node-chrome:3.0.0-dubnium
66
MAINTAINER Selenium <selenium-developers@googlegroups.com>
77

88
USER root

NodeChromeDebug/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ If you are running Boot2Docker on Mac then you already have a [VNC client](http:
3838
When you are prompted for the password it is __secret__. If you wish to change this then you should either change it in the `/NodeBase/Dockerfile` and build the images yourself, or you can define a docker image that derives from the posted ones which reconfigures it:
3939

4040
``` dockerfile
41-
FROM selenium/node-chrome-debug:3.0.0-cerium
41+
FROM selenium/node-chrome-debug:3.0.0-dubnium
4242

4343
RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
4444
```

NodeChromeDebug/entry_point.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@ function shutdown {
2020
wait $NODE_PID
2121
}
2222

23-
REMOTE_HOST_PARAM=""
2423
if [ ! -z "$REMOTE_HOST" ]; then
25-
echo "REMOTE_HOST variable is set, appending -remoteHost"
26-
REMOTE_HOST_PARAM="-remoteHost $REMOTE_HOST"
24+
>&2 echo "REMOTE_HOST variable is *DEPRECATED* in these docker containers. Please use SE_OPTS=\"-hubHost <host> -hubPort <port>\" instead!"
25+
exit 1
2726
fi
2827

2928
if [ ! -z "$SE_OPTS" ]; then

NodeDebug/README.template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ If you are running Boot2Docker on Mac then you already have a [VNC client](http:
3838
When you are prompted for the password it is __secret__. If you wish to change this then you should either change it in the `/NodeBase/Dockerfile` and build the images yourself, or you can define a docker image that derives from the posted ones which reconfigures it:
3939

4040
``` dockerfile
41-
FROM selenium/##BASE##-debug:3.0.0-cerium
41+
FROM selenium/##BASE##-debug:3.0.0-dubnium
4242

4343
RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
4444
```

NodeFirefox/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/node-base:3.0.0-cerium
5+
FROM selenium/node-base:3.0.0-dubnium
66
MAINTAINER Selenium <selenium-developers@googlegroups.com>
77

88
USER root

0 commit comments

Comments
 (0)