This repository has been archived by the owner on Jun 22, 2024. It is now read-only.
forked from SeleniumHQ/docker-selenium
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #72 from seleniumhq-community/4.19.1 [deploy]
Sync upstream 4.19.1 Signed-off-by: Viet Nguyen Duc <[email protected]>
- Loading branch information
Showing
17 changed files
with
129 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ LABEL authors="Selenium <[email protected]>" | |
ARG VERSION | ||
ARG RELEASE=selenium-${VERSION} | ||
# Default value should be aligned with upstream Selenium (https://github.com/SeleniumHQ/selenium/blob/trunk/java/maven_deps.bzl) | ||
ARG OPENTELEMETRY_VERSION=1.35.0 | ||
ARG GRPC_VERSION=1.61.1 | ||
ARG OPENTELEMETRY_VERSION=1.36.0 | ||
ARG GRPC_VERSION=1.62.2 | ||
|
||
#Arguments to define the user running Selenium | ||
ARG SEL_USER=seluser | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
global: | ||
seleniumGrid: | ||
logLevel: INFO | ||
stdoutProbeLog: true | ||
|
||
ingress: | ||
className: nginx | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
global: | ||
seleniumGrid: | ||
imageRegistry: selenium | ||
|
||
selenium-grid: | ||
enabled: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[docker] | ||
|
||
configs = [ | ||
"${NAMESPACE}/standalone-firefox:${TAG}", '{"browserName": "firefox", "platformName": "linux"}', | ||
"${NAMESPACE}/standalone-chrome:${TAG}", '{"browserName": "chrome", "platformName": "linux"}', | ||
"${NAMESPACE}/standalone-edge:${TAG}", '{"browserName": "MicrosoftEdge", "platformName": "linux"}' | ||
] | ||
|
||
url = "http://127.0.0.1:2375" | ||
|
||
video-image = "${NAMESPACE}/video:${VIDEO_TAG}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
version: "3" | ||
services: | ||
node-docker: | ||
image: ${NAMESPACE}/node-docker:${TAG} | ||
volumes: | ||
- ./videos:/opt/selenium/assets | ||
- ./videos/config.toml:/opt/bin/config.toml | ||
- /var/run/docker.sock:/var/run/docker.sock | ||
depends_on: | ||
- selenium-hub | ||
environment: | ||
- SE_EVENT_BUS_HOST=selenium-hub | ||
- SE_EVENT_BUS_PUBLISH_PORT=4442 | ||
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443 | ||
- SE_NODE_ENABLE_MANAGED_DOWNLOADS=true | ||
- SE_LOG_LEVEL=FINE | ||
|
||
selenium-hub: | ||
image: ${NAMESPACE}/hub:${TAG} | ||
container_name: selenium-hub | ||
environment: | ||
- SE_LOG_LEVEL=${LOG_LEVEL} | ||
- SE_SESSION_REQUEST_TIMEOUT=${REQUEST_TIMEOUT} | ||
ports: | ||
- "4442:4442" | ||
- "4443:4443" | ||
- "4444:4444" | ||
|
||
tests: | ||
image: docker-selenium-tests:latest | ||
build: | ||
context: ./ | ||
dockerfile: ./Dockerfile | ||
depends_on: | ||
- selenium-hub | ||
environment: | ||
- RUN_IN_DOCKER_COMPOSE=true | ||
- SELENIUM_GRID_HOST=selenium-hub | ||
command: ["./bootstrap.sh", "${NODE}"] |