This image is based on official Google Chrome build with debian libraries and it is built on top of clover/base.
| Environment | Default value | Description |
|---|---|---|
CHROMEDRIVER_PORT | 9515 | Port to listen on |
CHROMEDRIVER_LOG_LEVEL | WARNING | Set log level: ALL, DEBUG, INFO, WARNING, SEVERE, OFF |
CHROMEDRIVER_URL_BASE | / | Base URL path prefix for commands, e.g. wd/url |
CHROME_TIMEOUT | not set | Timeout in seconds to autmatically close dangling chrome browsers * |
CHROME_ARGUMENTS | --disable-dev-shm-usage --disable-crash-reporter | Additional (defaul) chrome command line arguments to pass to the chrome binary * |
PUID | 50 | Desired UID of the process owner ** |
PGID | primary group id of the UID user (50) | Desired GID of the process owner ** |
* /opt/google/chrome/google-chrome is a wrapper around /opt/google/chrome/chrome binary that will be used by the chromedriver to launch the browser.
It forcibly passes --headless and --disable-gpu arguments to the chrome binary.
To override this behaviour pass /opt/google/chrome/chrome as a binary to the chromedriver:
ChromeOptions options = new ChromeOptions();
options.setBinary("/opt/google/chrome/chrome");
Wrapper also supports CHROME_ARGUMENTS environment variable to define additional (default) set of command line arguments.
Each argument may be overidden if passed to the chromedriver:
options.addArguments("--window-size=1920,1080");
chromedriver does not close browsers on its own. If client craches before sending quit signal, browser will never be closed.
To prevent this wrapper has CHROME_TIMEOUT environment variable that will set the execution cap of the chrome binary.
This parameter is also available as an additional non-standard --process-timeout={seconds} command line argument.
CHROME_TIMEOUT is not set by default. If set to any positive non-zero value will cap execution time of each browser separately,
unless command line argument is specified:
options.addArguments("--process-timeout=60");
To disable execution time capping set it to zero (0).
** There are three options to launch chrome in the docker:
root user with --no-sandbox argument;root user with SYS_ADMIN docker capability (--cap-add=SYS_ADMIN);root user with --no-sandbox argument;By default, chromedriver will be running as chrome user (PUID=50, PGID=50).
To launch under root specify PUID=0, PGID=0.
Custom PUID/PGID could be used to preserve data volume ownership on host.
| Port | Description |
|---|---|
CHROMEDRIVER_PORT (9515) | TCP port chromedriver is listening on |
linux/amd64;Content type
Image
Digest
sha256:2981f6fa9…
Size
292.5 MB
Last updated
4 months ago
docker pull clover/chrome