Adding selenium stability fix and unpinning se images

This commit is contained in:
John Hill
2019-04-12 15:43:37 -04:00
committed by GitHub
parent dc833bbaa7
commit 77e587babe

View File

@@ -2,11 +2,13 @@
version: '2' version: '2'
services: services:
hub: hub:
image: selenium/hub:3.8.1-erbium image: selenium/hub
ports: ports:
- 4444:4444 - 4444:4444
environment:
DBUS_SESSION_BUS_ADDRESS: /dev/null
chrome: chrome:
image: selenium/node-chrome:3.8.1-erbium image: selenium/node-chrome
# uncomment the two lines below to make tests watchable at vnc://localhost:secret@localhost:5900 # uncomment the two lines below to make tests watchable at vnc://localhost:secret@localhost:5900
# image: selenium/node-chrome-debug # image: selenium/node-chrome-debug
# ports: ['5900:5900'] # ports: ['5900:5900']
@@ -17,6 +19,7 @@ services:
environment: environment:
HUB_PORT_4444_TCP_ADDR: hub HUB_PORT_4444_TCP_ADDR: hub
HUB_PORT_4444_TCP_PORT: 4444 HUB_PORT_4444_TCP_PORT: 4444
DBUS_SESSION_BUS_ADDRESS: /dev/null
firefox: firefox:
image: selenium/node-firefox image: selenium/node-firefox
links: links:
@@ -38,3 +41,4 @@ services:
environment: environment:
AWX_E2E_CLUSTER_HOST: hub AWX_E2E_CLUSTER_HOST: hub
AWX_E2E_CLUSTER_PORT: 4444 AWX_E2E_CLUSTER_PORT: 4444
DBUS_SESSION_BUS_ADDRESS: /dev/null