Skip to content

Commit

Permalink
Update tag in docs and files [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
selenium-ci committed Feb 8, 2022
1 parent 459ebc2 commit 9c505bb
Show file tree
Hide file tree
Showing 28 changed files with 145 additions and 139 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ body:
attributes:
label: Docker Selenium version (tag)
description: What version of Docker Selenium are you using?
placeholder: 4.1.2-20220131? Please use the full tag, avoid "latest"
placeholder: 4.1.2-20220208? Please use the full tag, avoid "latest"
validations:
required: true
2 changes: 1 addition & 1 deletion Distributor/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
FROM selenium/base:4.1.2-20220131
FROM selenium/base:4.1.2-20220208
LABEL authors=SeleniumHQ

USER 1200
Expand Down
2 changes: 1 addition & 1 deletion EventBus/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
FROM selenium/base:4.1.2-20220131
FROM selenium/base:4.1.2-20220208
LABEL authors=SeleniumHQ

USER 1200
Expand Down
2 changes: 1 addition & 1 deletion Hub/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
FROM selenium/base:4.1.2-20220131
FROM selenium/base:4.1.2-20220208
LABEL authors=SeleniumHQ

USER 1200
Expand Down
2 changes: 1 addition & 1 deletion NodeBase/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
FROM selenium/base:4.1.2-20220131
FROM selenium/base:4.1.2-20220208
LABEL authors=SeleniumHQ

USER root
Expand Down
2 changes: 1 addition & 1 deletion NodeChrome/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
FROM selenium/node-base:4.1.2-20220131
FROM selenium/node-base:4.1.2-20220208
LABEL authors=SeleniumHQ

USER root
Expand Down
16 changes: 13 additions & 3 deletions NodeDocker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,18 @@
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
FROM selenium/base:4.1.2-20220131
FROM selenium/base:4.1.2-20220208
LABEL authors=SeleniumHQ

USER root

#==============
# Socat to proxy docker.sock when mounted
#==============
RUN apt-get update -qqy \
&& apt-get -qqy install socat \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*

USER 1200

#========================
Expand All @@ -13,9 +22,10 @@ USER 1200

EXPOSE 4444

COPY start-selenium-grid-node-docker.sh \
COPY start-selenium-grid-docker.sh \
config.toml \
start-socat.sh \
/opt/bin/

COPY selenium-grid-node-docker.conf /etc/supervisor/conf.d/
COPY selenium-grid-docker.conf /etc/supervisor/conf.d/

8 changes: 4 additions & 4 deletions NodeDocker/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# Configs have a mapping between the Docker image to use and the capabilities that need to be matched to
# start a container with the given image.
configs = [
"selenium/standalone-firefox:4.1.2-20220131", '{"browserName": "firefox", "platformName": "linux"}',
"selenium/standalone-chrome:4.1.2-20220131", '{"browserName": "chrome", "platformName": "linux"}',
"selenium/standalone-edge:4.1.2-20220131", '{"browserName": "MicrosoftEdge", "platformName": "linux"}'
"selenium/standalone-firefox:4.1.2-20220208", '{"browserName": "firefox", "platformName": "linux"}',
"selenium/standalone-chrome:4.1.2-20220208", '{"browserName": "chrome", "platformName": "linux"}',
"selenium/standalone-edge:4.1.2-20220208", '{"browserName": "MicrosoftEdge", "platformName": "linux"}'
]

# URL for connecting to the docker daemon
Expand All @@ -14,7 +14,7 @@ configs = [
# socat -4 TCP-LISTEN:2375,fork UNIX-CONNECT:/var/run/docker.sock
url = "http://127.0.0.1:2375"
# Docker image used for video recording
video-image = "selenium/video:ffmpeg-4.3.1-20220131"
video-image = "selenium/video:ffmpeg-4.3.1-20220208"

# Uncomment the following section if you are running the node on a separate VM
# Fill out the placeholders with appropriate values
Expand Down
2 changes: 1 addition & 1 deletion NodeEdge/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
FROM selenium/node-base:4.1.2-20220131
FROM selenium/node-base:4.1.2-20220208
LABEL authors=SeleniumHQ

USER root
Expand Down
2 changes: 1 addition & 1 deletion NodeFirefox/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
FROM selenium/node-base:4.1.2-20220131
FROM selenium/node-base:4.1.2-20220208
LABEL authors=SeleniumHQ

USER root
Expand Down

0 comments on commit 9c505bb

Please sign in to comment.