Skip to content

Commit b961dd5

Browse files
committed
3.14.0-helium release
1 parent 27f32b4 commit b961dd5

File tree

16 files changed

+85
-68
lines changed

16 files changed

+85
-68
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Image(s):
1010
<!-- node-chrome? hub? standalone-firefox? -->
1111
Docker-Selenium Image Version(s):
12-
<!-- 3, 3.4, 3.14.0-gallium etc -->
12+
<!-- 3, 3.4, 3.14.0-helium etc -->
1313
Docker Version:
1414
<!-- 17.09.0-ce, 17.06.2-ce etc -->
1515
OS:

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.14.0-gallium
5+
FROM selenium/base:3.14.0-helium
66
LABEL authors=SeleniumHQ
77

88
USER seluser

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME := $(or $(NAME),$(NAME),selenium)
2-
VERSION := $(or $(VERSION),$(VERSION),3.14.0-gallium)
2+
VERSION := $(or $(VERSION),$(VERSION),3.14.0-helium)
33
NAMESPACE := $(or $(NAMESPACE),$(NAMESPACE),$(NAME))
44
AUTHORS := $(or $(AUTHORS),$(AUTHORS),SeleniumHQ)
55
PLATFORM := $(shell uname -s)

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.14.0-gallium
5+
FROM selenium/base:3.14.0-helium
66
LABEL authors=SeleniumHQ
77

88
USER root

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.14.0-gallium
5+
FROM selenium/node-base:3.14.0-helium
66
LABEL authors=SeleniumHQ
77

88
USER root

NodeChromeDebug/Dockerfile

Lines changed: 10 additions & 3 deletions
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.14.0-gallium
5+
FROM selenium/node-chrome:3.14.0-helium
66
LABEL authors=SeleniumHQ
77

88
USER root
@@ -31,8 +31,15 @@ USER seluser
3131
# So the service can be started with seluser
3232
#==============================
3333

34-
RUN mkdir -p ~/.vnc \
35-
&& x11vnc -storepasswd secret ~/.vnc/passwd
34+
RUN mkdir -p ${HOME}/.vnc \
35+
&& x11vnc -storepasswd secret ${HOME}/.vnc/passwd
36+
37+
#==========
38+
# Relaxing permissions for OpenShift and other non-sudo environments
39+
#==========
40+
RUN sudo chmod -R 777 ${HOME} \
41+
&& sudo chgrp -R 0 ${HOME} \
42+
&& sudo chmod -R g=u ${HOME}
3643

3744
#==============================
3845
# Scripts to run fluxbox and x11vnc

NodeChromeDebug/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ If you are running Boot2Docker on Mac then you already have a [VNC client](http:
3737
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:
3838

3939
``` dockerfile
40-
FROM selenium/node-chrome-debug:3.14.0-gallium
40+
FROM selenium/node-chrome-debug:3.14.0-helium
4141

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

NodeDebug/README.template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ If you are running Boot2Docker on Mac then you already have a [VNC client](http:
3737
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:
3838

3939
``` dockerfile
40-
FROM selenium/##BASE##-debug:3.14.0-gallium
40+
FROM selenium/##BASE##-debug:3.14.0-helium
4141

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

NodeFirefox/Dockerfile

Lines changed: 9 additions & 6 deletions
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.14.0-gallium
5+
FROM selenium/node-base:3.14.0-helium
66
LABEL authors=SeleniumHQ
77

88
USER root
@@ -41,10 +41,13 @@ USER seluser
4141

4242
COPY generate_config /opt/bin/generate_config
4343

44-
# Running this command as sudo just to avoid the message:
45-
# To run a command as administrator (user "root"), use "sudo <command>". See "man sudo_root" for details.
46-
# When logging into the container
47-
RUN sudo echo ""
48-
4944
# Generating a default config during build time
5045
RUN /opt/bin/generate_config > /opt/selenium/config.json
46+
47+
#==========
48+
# Relaxing permissions for OpenShift and other non-sudo environments
49+
#==========
50+
RUN sudo chmod -R 777 ${HOME} \
51+
&& sudo chgrp -R 0 ${HOME} \
52+
&& sudo chmod -R g=u ${HOME}
53+

NodeFirefoxDebug/Dockerfile

Lines changed: 10 additions & 3 deletions
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-firefox:3.14.0-gallium
5+
FROM selenium/node-firefox:3.14.0-helium
66
LABEL authors=SeleniumHQ
77

88
USER root
@@ -31,8 +31,15 @@ USER seluser
3131
# So the service can be started with seluser
3232
#==============================
3333

34-
RUN mkdir -p ~/.vnc \
35-
&& x11vnc -storepasswd secret ~/.vnc/passwd
34+
RUN mkdir -p ${HOME}/.vnc \
35+
&& x11vnc -storepasswd secret ${HOME}/.vnc/passwd
36+
37+
#==========
38+
# Relaxing permissions for OpenShift and other non-sudo environments
39+
#==========
40+
RUN sudo chmod -R 777 ${HOME} \
41+
&& sudo chgrp -R 0 ${HOME} \
42+
&& sudo chmod -R g=u ${HOME}
3643

3744
#==============================
3845
# Scripts to run fluxbox and x11vnc

0 commit comments

Comments
 (0)