Skip to content
This repository has been archived by the owner on Jul 12, 2023. It is now read-only.

Commit

Permalink
Use selenium 3.7.1-beryllium
Browse files Browse the repository at this point in the history
  • Loading branch information
sevein committed Nov 17, 2017
1 parent 577f0a2 commit df24e06
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions compose/docker-compose.acceptance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: "2"
services:

selenium-hub:
image: "selenium/hub:3.6.0"
image: "selenium/hub:3.7.1-beryllium"
expose:
- "4444"
ports:
Expand All @@ -17,29 +17,23 @@ services:
GRID_DEBUG: "false"

selenium-firefox:
image: "selenium/node-firefox:3.6.0"
image: "selenium/node-firefox:3.7.1-beryllium"
links:
- "selenium-hub"
- "nginx"
shm_size: 2g # See https://goo.gl/dkZzHh
environment:
FIREFOX_VERSION: "55.0.3"
GECKODRIVER_VERSION: "0.18.0"
HUB_PORT_4444_TCP_ADDR: "selenium-hub"
HUB_PORT_4444_TCP_PORT: "4444"

selenium-chrome:
image: "selenium/node-chrome:3.6.0"
image: "selenium/node-chrome:3.7.1-beryllium"
links:
- "selenium-hub"
- "nginx"
volumes:
# Mitigates the Chromium issue described at https://goo.gl/fBzwcm
- /dev/shm:/dev/shm
shm_size: 2g # TODO: Do I need this?
privileged: true # TODO: Do I need this?
- /dev/shm:/dev/shm # See https://goo.gl/fBzwcm
environment:
CHROME_VERSION: "google-chrome-stable"
CHROME_DRIVER_VERSION: "latest"
HUB_PORT_4444_TCP_ADDR: "selenium-hub"
HUB_PORT_4444_TCP_PORT: "4444"

Expand Down

0 comments on commit df24e06

Please sign in to comment.