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

Commit 810f76e

Browse files
Merging from upstream
2 parents cf1cf20 + 7136f9d commit 810f76e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+490
-210
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.1-20220531? Please use the full tag, avoid "latest"
58+
placeholder: 4.2.2-20220609? Please use the full tag, avoid "latest"
5959
validations:
6060
required: true

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Output Docker info
2626
run: docker info
2727
- name: Set up Python 3.8
28-
uses: actions/setup-python@v3.1.2
28+
uses: actions/setup-python@v4.0.0
2929
with:
3030
python-version: 3.8
3131
- name: Get branch name (only for push to branch)

.github/workflows/test-video.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Output Docker info
2323
run: docker info
2424
- name: Set up Python 3.8
25-
uses: actions/setup-python@v3.1.2
25+
uses: actions/setup-python@v4.0.0
2626
with:
2727
python-version: 3.8
2828
- name: Get branch name (only for push to branch)

.gitpod.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
tasks:
2+
- name: Show README link and build instructions
3+
before: |
4+
echo "Try out Selenium Grid in Docker by following https://github.com/SeleniumHQ/docker-selenium#execution-modes"
5+
echo "To build all images, run 'make all'. See more instructions at https://github.com/SeleniumHQ/docker-selenium/wiki/Building-your-own-images"
6+

Base/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#FROM ubuntu:focal-20211006
44
#FROM ubuntu:focal-20220302
55
#FROM ubuntu:focal-20220415
6+
#FROM ubuntu:focal-20220531
67
FROM debian:latest
78
LABEL authors="Selenium <[email protected]>"
89

@@ -89,7 +90,7 @@ COPY supervisord.conf /etc
8990
RUN mkdir -p /opt/selenium /opt/selenium/assets /var/run/supervisor /var/log/supervisor \
9091
&& touch /opt/selenium/config.toml \
9192
&& chmod -R 777 /opt/selenium /opt/selenium/assets /var/run/supervisor /var/log/supervisor /etc/passwd \
92-
&& wget --no-verbose https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.2.0/selenium-server-4.2.1.jar \
93+
&& wget --no-verbose https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.2.0/selenium-server-4.2.2.jar \
9394
-O /opt/selenium/selenium-server.jar \
9495
&& chgrp -R 0 /opt/selenium ${HOME} /opt/selenium/assets /var/run/supervisor /var/log/supervisor \
9596
&& chmod -R g=u /opt/selenium ${HOME} /opt/selenium/assets /var/run/supervisor /var/log/supervisor

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

88
USER 1200

Distributor/start-selenium-grid-distributor.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ if [ ! -z "$SE_DISTRIBUTOR_PORT" ]; then
5555
fi
5656

5757

58-
java ${JAVA_OPTS} -jar /opt/selenium/selenium-server.jar distributor \
58+
java ${JAVA_OPTS:-$SE_JAVA_OPTS} -jar /opt/selenium/selenium-server.jar distributor \
5959
--sessions-host "${SE_SESSIONS_MAP_HOST}" --sessions-port "${SE_SESSIONS_MAP_PORT}" \
6060
--sessionqueue-host "${SE_SESSION_QUEUE_HOST}" --sessionqueue-port "${SE_SESSION_QUEUE_PORT}" \
6161
--publish-events tcp://"${SE_EVENT_BUS_HOST}":"${SE_EVENT_BUS_PUBLISH_PORT}" \

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

88
USER 1200

EventBus/start-selenium-grid-eventbus.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if [ ! -z "$SE_OPTS" ]; then
1919
echo "Appending Selenium options: ${SE_OPTS}"
2020
fi
2121

22-
java ${JAVA_OPTS} -jar /opt/selenium/selenium-server.jar event-bus \
22+
java ${JAVA_OPTS:-$SE_JAVA_OPTS} -jar /opt/selenium/selenium-server.jar event-bus \
2323
--bind-host ${SE_BIND_HOST} \
2424
${HOST_CONFIG} \
2525
${PORT_CONFIG} \

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

88
USER 1200

0 commit comments

Comments
 (0)