Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion NodeBase/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ ENV LANG_WHICH=${LANG_WHICH} \
SE_OFFLINE="true" \
SE_NODE_BROWSER_VERSION="stable" \
SE_NODE_PLATFORM_NAME="Linux" \
SE_NODE_ENABLE_MANAGED_DOWNLOADS="true" \
#============================
# Some configuration options
#============================
Expand Down
3 changes: 2 additions & 1 deletion NodeChrome/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,5 @@ RUN echo "chrome" > /opt/selenium/browser_name
RUN google-chrome --version | awk '{print $3}' > /opt/selenium/browser_version
RUN echo "\"goog:chromeOptions\": {\"binary\": \"/usr/bin/google-chrome\"}" > /opt/selenium/browser_binary_location

ENV SE_OTEL_SERVICE_NAME="selenium-node-chrome"
ENV SE_OTEL_SERVICE_NAME="selenium-node-chrome" \
SE_NODE_ENABLE_MANAGED_DOWNLOADS="true"
3 changes: 2 additions & 1 deletion NodeChromium/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,5 @@ RUN echo "chrome" > /opt/selenium/browser_name
RUN chromium --version | awk '{print $2}' > /opt/selenium/browser_version
RUN echo "\"goog:chromeOptions\": {\"binary\": \"/usr/bin/chromium\"}" > /opt/selenium/browser_binary_location

ENV SE_OTEL_SERVICE_NAME="selenium-node-chromium"
ENV SE_OTEL_SERVICE_NAME="selenium-node-chromium" \
SE_NODE_ENABLE_MANAGED_DOWNLOADS="true"
3 changes: 2 additions & 1 deletion NodeDocker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ COPY selenium-grid-docker.conf /etc/supervisor/conf.d/
ENV SE_OTEL_SERVICE_NAME="selenium-node-docker" \
SE_EVENT_BUS_PUBLISH_PORT="4442" \
SE_EVENT_BUS_SUBSCRIBE_PORT="4443" \
SE_NODE_DOCKER_CONFIG_FILENAME="docker.toml"
SE_NODE_DOCKER_CONFIG_FILENAME="docker.toml" \
SE_NODE_ENABLE_MANAGED_DOWNLOADS="true"
3 changes: 2 additions & 1 deletion NodeEdge/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,5 @@ RUN echo "MicrosoftEdge" > /opt/selenium/browser_name
RUN microsoft-edge --version | awk '{print $3}' > /opt/selenium/browser_version
RUN echo "\"ms:edgeOptions\": {\"binary\": \"/usr/bin/microsoft-edge\"}" > /opt/selenium/browser_binary_location

ENV SE_OTEL_SERVICE_NAME="selenium-node-edge"
ENV SE_OTEL_SERVICE_NAME="selenium-node-edge" \
SE_NODE_ENABLE_MANAGED_DOWNLOADS="true"
3 changes: 2 additions & 1 deletion NodeFirefox/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,5 @@ RUN echo "firefox" > /opt/selenium/browser_name \
&& firefox --version | awk '{print $3}' > /opt/selenium/browser_version \
&& echo "\"moz:firefoxOptions\": {\"binary\": \"/usr/bin/firefox\"}" > /opt/selenium/browser_binary_location

ENV SE_OTEL_SERVICE_NAME="selenium-node-firefox"
ENV SE_OTEL_SERVICE_NAME="selenium-node-firefox" \
SE_NODE_ENABLE_MANAGED_DOWNLOADS="true"
3 changes: 2 additions & 1 deletion Standalone/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ ENV SE_SESSION_REQUEST_TIMEOUT="300" \
# Boolean value, maps "--relax-checks"
SE_RELAX_CHECKS="true" \
SE_REJECT_UNSUPPORTED_CAPS="true" \
SE_OTEL_SERVICE_NAME="selenium-standalone"
SE_OTEL_SERVICE_NAME="selenium-standalone" \
SE_NODE_ENABLE_MANAGED_DOWNLOADS="true"

EXPOSE 4444
3 changes: 2 additions & 1 deletion StandaloneDocker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ ENV SE_SESSION_REQUEST_TIMEOUT="300" \
SE_SESSION_RETRY_INTERVAL="15" \
# Boolean value, maps "--relax-checks"
SE_RELAX_CHECKS="true" \
SE_OTEL_SERVICE_NAME="selenium-standalone-docker"
SE_OTEL_SERVICE_NAME="selenium-standalone-docker" \
SE_NODE_ENABLE_MANAGED_DOWNLOADS="true"
Loading