You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 26, 2025. It is now read-only.
The docker-compose.yml provided in GitHub has two errors in it. These cause this error when running the container:
ERROR: Error forwarding the new session Empty pool of VM for setup Capabilities {browserName: chrome, handlesAlerts: true, javascriptEnabled: true, locationContextEnabled: true, loggingPrefs: org.openqa.selenium.logging..., requestOrigins: {name: webdriverio, url: http://webdriver.io, version: 4.14.1}, rotatable: true}
The problem is that the environment sections need to have this:
HUB_PORT_4444_TCP_PORT=4444
Otherwise, the script that starts the selenium standalone jar file specifies a URL to connect to the HUB which is invalid, and the chrome and firefox containers can't establish a connection to the hub.
The example docker-compose.yml that's shown in README.md doesn't have this problem. It does specify HUB_PORT_4444_TCP_PORT. But the docker-compose.yml is missing that line.
The docker-compose.yml provided in GitHub has two errors in it. These cause this error when running the container:
The problem is that the environment sections need to have this:
Otherwise, the script that starts the selenium standalone jar file specifies a URL to connect to the HUB which is invalid, and the chrome and firefox containers can't establish a connection to the hub.
The example docker-compose.yml that's shown in README.md doesn't have this problem. It does specify HUB_PORT_4444_TCP_PORT. But the docker-compose.yml is missing that line.