Skip to content

Commit 853239e

Browse files
committed
upgrade to 3.2
1 parent 032b187 commit 853239e

File tree

20 files changed

+50
-44
lines changed

20 files changed

+50
-44
lines changed

Base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ RUN apt-get update -qqy \
3535
# Selenium
3636
#==========
3737
RUN mkdir -p /opt/selenium \
38-
&& wget --no-verbose https://selenium-release.storage.googleapis.com/3.1/selenium-server-standalone-3.1.0.jar -O /opt/selenium/selenium-server-standalone.jar
38+
&& wget --no-verbose https://selenium-release.storage.googleapis.com/3.2/selenium-server-standalone-3.2.0.jar -O /opt/selenium/selenium-server-standalone.jar
3939

4040
#========================================
4141
# Add normal user with passwordless sudo

Hub/Dockerfile

Lines changed: 7 additions & 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.1.0-astatine
5+
FROM selenium/base:3.2.0-actinium
66
MAINTAINER Selenium <[email protected]>
77

88
#========================
@@ -12,13 +12,19 @@ MAINTAINER Selenium <[email protected]>
1212
EXPOSE 4444
1313

1414
ENV GRID_THROW_ON_CAPABILITY_NOT_PRESENT true
15+
# In milliseconds
1516
ENV GRID_NEW_SESSION_WAIT_TIMEOUT -1
1617
ENV GRID_JETTY_MAX_THREADS -1
18+
# In milliseconds
1719
ENV GRID_NODE_POLLING 5000
20+
# In milliseconds
1821
ENV GRID_CLEAN_UP_CYCLE 5000
22+
# In seconds
1923
ENV GRID_TIMEOUT 30
24+
# In seconds
2025
ENV GRID_BROWSER_TIMEOUT 0
2126
ENV GRID_MAX_SESSION 5
27+
# In milliseconds
2228
ENV GRID_UNREGISTER_IF_STILL_DOWN_AFTER 30000
2329

2430
COPY generate_config /opt/selenium/generate_config

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.1.0-astatine)
2+
VERSION := $(or $(VERSION),$(VERSION),3.2.0-actinium)
33
PLATFORM := $(shell uname -s)
44
BUILD_ARGS := $(BUILD_ARGS)
55
MAJOR := $(word 1,$(subst ., ,$(VERSION)))

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.1.0-astatine
5+
FROM selenium/base:3.2.0-actinium
66
MAINTAINER Selenium <[email protected]>
77

88
ENV DEBIAN_FRONTEND noninteractive

NodeChrome/Dockerfile

Lines changed: 2 additions & 2 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.1.0-astatine
5+
FROM selenium/node-base:3.2.0-actinium
66
MAINTAINER Selenium <[email protected]>
77

88
USER root
@@ -29,7 +29,7 @@ RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key
2929
#==================
3030
# Chrome webdriver
3131
#==================
32-
ARG CHROME_DRIVER_VERSION=2.27
32+
ARG CHROME_DRIVER_VERSION=2.28
3333
RUN wget --no-verbose -O /tmp/chromedriver_linux64.zip https://chromedriver.storage.googleapis.com/$CHROME_DRIVER_VERSION/chromedriver_linux64.zip \
3434
&& rm -rf /opt/selenium/chromedriver \
3535
&& unzip /tmp/chromedriver_linux64.zip -d /opt/selenium \

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.1.0-astatine
5+
FROM selenium/node-chrome:3.2.0-actinium
66
MAINTAINER Selenium <[email protected]>
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.1-germanium
41+
FROM selenium/node-chrome-debug:3.1.0-actinium
4242

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

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.1-germanium
41+
FROM selenium/##BASE##-debug:3.1.0-actinium
4242

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

NodeFirefox/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
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.1.0-astatine
5+
FROM selenium/node-base:3.2.0-actinium
66
MAINTAINER Selenium <[email protected]>
77

88
USER root
99

1010
#=========
1111
# Firefox
1212
#=========
13-
ARG FIREFOX_VERSION=51.0.1
13+
ARG FIREFOX_VERSION=52.0
1414
RUN apt-get update -qqy \
1515
&& apt-get -qqy --no-install-recommends install firefox \
1616
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* \

NodeFirefoxDebug/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-firefox:3.1.0-astatine
5+
FROM selenium/node-firefox:3.2.0-actinium
66
MAINTAINER Selenium <[email protected]>
77

88
USER root

0 commit comments

Comments
 (0)