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

Commit 5a12a5b

Browse files
Merge branch 'trunk' of https://github.com/SeleniumHQ/docker-selenium into trunk
2 parents f13b5d0 + bb7ae2b commit 5a12a5b

19 files changed

+136
-137
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.5.2-20221021? Please use the full tag, avoid "latest"
58+
placeholder: 4.5.3-20221024? Please use the full tag, avoid "latest"
5959
validations:
6060
required: true

Base/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ COPY supervisord.conf /etc
9090
RUN mkdir -p /opt/selenium /opt/selenium/assets /var/run/supervisor /var/log/supervisor \
9191
&& touch /opt/selenium/config.toml \
9292
&& chmod -R 777 /opt/selenium /opt/selenium/assets /var/run/supervisor /var/log/supervisor /etc/passwd \
93-
&& wget --no-verbose https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.5.0/selenium-server-4.5.2.jar \
93+
&& wget --no-verbose https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.5.0/selenium-server-4.5.3.jar \
9494
-O /opt/selenium/selenium-server.jar \
95-
&& wget --no-verbose https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-http-jdk-client/4.5.2/selenium-http-jdk-client-4.5.2.jar \
95+
&& wget --no-verbose https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-http-jdk-client/4.5.3/selenium-http-jdk-client-4.5.3.jar \
9696
-O /opt/selenium/selenium-http-jdk-client.jar \
9797
&& chgrp -R 0 /opt/selenium ${HOME} /opt/selenium/assets /var/run/supervisor /var/log/supervisor \
9898
&& chmod -R g=u /opt/selenium ${HOME} /opt/selenium/assets /var/run/supervisor /var/log/supervisor
@@ -104,7 +104,6 @@ USER 1200:1201
104104

105105
# Boolean value, maps "--bind-host"
106106
ENV SE_BIND_HOST false
107-
ENV SE_DOCKER true
108107

109108

110109

NodeBase/selenium.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ stderr_capture_maxbytes=50MB
5555

5656
[program:selenium-node]
5757
priority=15
58-
command=bash -c "/opt/bin/start-selenium-node.sh && kill -s SIGINT `cat /var/run/supervisor/supervisord.pid`"
58+
command=bash -c "/opt/bin/start-selenium-node.sh; EXIT_CODE=$?; kill -s SIGINT `cat /var/run/supervisor/supervisord.pid`; exit $EXIT_CODE"
5959
stopasgroup = true
6060
autostart=true
6161
autorestart=false

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.5.2-20221021", '{"browserName": "firefox", "platformName": "linux"}',
6-
"selenium/standalone-chrome:4.5.2-20221021", '{"browserName": "chrome", "platformName": "linux"}',
7-
"selenium/standalone-edge:4.5.2-20221021", '{"browserName": "MicrosoftEdge", "platformName": "linux"}'
5+
"selenium/standalone-firefox:4.5.3-20221024", '{"browserName": "firefox", "platformName": "linux"}',
6+
"selenium/standalone-chrome:4.5.3-20221024", '{"browserName": "chrome", "platformName": "linux"}',
7+
"selenium/standalone-edge:4.5.3-20221024", '{"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-20221021"
17+
video-image = "selenium/video:ffmpeg-4.3.1-20221024"
1818

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

0 commit comments

Comments
 (0)