Skip to content
This repository was archived by the owner on Jun 22, 2024. It is now read-only.

Commit ca92fef

Browse files
[deploy] 4.2.2 after pulling from upstream
2 parents eaec278 + 43972f6 commit ca92fef

34 files changed

+205
-157
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ body:
5555
attributes:
5656
label: Docker Selenium version (tag)
5757
description: What version of Docker Selenium are you using?
58-
placeholder: 4.2.2-20220609? Please use the full tag, avoid "latest"
58+
placeholder: 4.2.2-20220622? Please use the full tag, avoid "latest"
5959
validations:
6060
required: true

Distributor/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:4.2.2-20220609
5+
FROM selenium/base:4.2.2-20220622
66
LABEL authors=SeleniumHQ
77

88
USER 1200

EventBus/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:4.2.2-20220609
5+
FROM selenium/base:4.2.2-20220622
66
LABEL authors=SeleniumHQ
77

88
USER 1200

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:4.2.2-20220609
5+
FROM selenium/base:4.2.2-20220622
66
LABEL authors=SeleniumHQ
77

88
USER 1200

NodeBase/Dockerfile

Lines changed: 12 additions & 8 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/base:4.2.2-20220609
5+
FROM selenium/base:4.2.2-20220622
66
LABEL authors=SeleniumHQ
77

88
USER root
@@ -169,20 +169,24 @@ COPY selenium_grid_logo.png /usr/share/images/fluxbox/ubuntu-light.png
169169
#============================
170170
# Some configuration options
171171
#============================
172-
ENV SCREEN_WIDTH 1360
173-
ENV SCREEN_HEIGHT 1020
174-
ENV SCREEN_DEPTH 24
175-
ENV SCREEN_DPI 96
172+
ENV SE_SCREEN_WIDTH 1360
173+
ENV SE_SCREEN_HEIGHT 1020
174+
ENV SE_SCREEN_DEPTH 24
175+
ENV SE_SCREEN_DPI 96
176+
ENV SE_START_XVFB true
177+
ENV SE_START_NO_VNC true
178+
ENV SE_NO_VNC_PORT 7900
179+
ENV SE_VNC_PORT 5900
176180
ENV DISPLAY :99.0
177181
ENV DISPLAY_NUM 99
178-
ENV START_XVFB true
179-
ENV START_NO_VNC true
180182
# Path to the Configfile
181183
ENV CONFIG_FILE=/opt/selenium/config.toml
182184
ENV GENERATE_CONFIG true
183185
# Drain the Node after N sessions.
184186
# A value higher than zero enables the feature
185-
ENV DRAIN_AFTER_SESSION_COUNT 0
187+
ENV SE_DRAIN_AFTER_SESSION_COUNT 0
188+
189+
186190

187191
#========================
188192
# Selenium Configuration

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:4.2.2-20220609
5+
FROM selenium/node-base:4.2.2-20220622
66
LABEL authors=SeleniumHQ
77

88
USER root

NodeDocker/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:4.2.2-20220609
5+
FROM selenium/base:4.2.2-20220622
66
LABEL authors=SeleniumHQ
77

88
USER root

NodeDocker/config.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# Configs have a mapping between the Docker image to use and the capabilities that need to be matched to
33
# start a container with the given image.
44
configs = [
5-
"selenium/standalone-firefox:4.2.2-20220609", '{"browserName": "firefox", "platformName": "linux"}',
6-
"selenium/standalone-chrome:4.2.2-20220609", '{"browserName": "chrome", "platformName": "linux"}',
7-
"selenium/standalone-edge:4.2.2-20220609", '{"browserName": "MicrosoftEdge", "platformName": "linux"}'
5+
"selenium/standalone-firefox:4.2.2-20220622", '{"browserName": "firefox", "platformName": "linux"}',
6+
"selenium/standalone-chrome:4.2.2-20220622", '{"browserName": "chrome", "platformName": "linux"}',
7+
"selenium/standalone-edge:4.2.2-20220622", '{"browserName": "MicrosoftEdge", "platformName": "linux"}'
88
]
99

1010
# URL for connecting to the docker daemon
@@ -14,7 +14,7 @@ configs = [
1414
# socat -4 TCP-LISTEN:2375,fork UNIX-CONNECT:/var/run/docker.sock
1515
url = "http://127.0.0.1:2375"
1616
# Docker image used for video recording
17-
video-image = "selenium/video:ffmpeg-4.3.1-20220609"
17+
video-image = "selenium/video:ffmpeg-4.3.1-20220622"
1818

1919
# Uncomment the following section if you are running the node on a separate VM
2020
# Fill out the placeholders with appropriate values

NodeEdge/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:4.2.2-20220609
5+
FROM selenium/node-base:4.2.2-20220622
66
LABEL authors=SeleniumHQ
77

88
USER root

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 seleniarm/node-base:4.1.4-20220429
5+
FROM selenium/node-base:4.2.2-20220622
66
LABEL authors=SeleniumHQ
77

88
ARG TARGETARCH

0 commit comments

Comments
 (0)