-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Open
Labels
@janasrikanth
Description
What happened?
We started using selenium grid, when we try running tests we are getting error "unable to list images for Reference client version 1.41 is too new. Maximum supported API version is 1.40"
We are using Oracle Linux 7 and supported docker version is docker-cli-19.03.11.ol-5.el7.x86_64.
reference link : https://yum.oracle.com/repo/OracleLinux/OL7/addons/x86_64/index.html
Tried adding DOCKER_API_VERSION=1.40 in env variables in docker compose but it didn't work.
Command used to start Selenium Grid with Docker (or Kubernetes)
version: '3' services: selenium-grid: image: "selenium/standalone-docker:4.35.0-20250808" container_name: selenium-grid privileged: true volumes: - '/test/Grid/config/config.toml:/opt/selenium/docker.toml' - /var/run/docker.sock:/var/run/docker.sock environment: - SE_BROWSER_ARGS_DISABLE_DSHM=--disable-dev-shm-usage - SE_SESSION_REQUEST_TIMEOUT=600 - SE_SESSION_RETRY_INTERVAL=2 - SE_START_VNC=false - SE_VNC_NO_PASSWORD=true - SE_NODE_MAX_SESSIONS=8 - SE_NODE_OVERRIDE_MAX_SESSIONS=true - SE_ENABLE_TRACING=true ports: - "4444:4444"
Relevant log output
unable to list images for Reference client version 1.41 is too new. Maximum supported API version is 1.40
Operating System
"Oracle Linux Server 7.9
Docker Selenium version (image tag)
4.35.0-20250808
Selenium Grid chart version (chart version)
No response