mirror of
https://github.com/ansible/awx.git
synced 2026-02-24 06:26:00 -03:30
Merge pull request #4013 from ansible/docker-container-tag-updates
Updated docker tags in container setup Reviewed-by: https://github.com/softwarefactory-project-zuul[bot]
This commit is contained in:
1
.env
1
.env
@@ -1,2 +1,3 @@
|
|||||||
PYTHONUNBUFFERED=true
|
PYTHONUNBUFFERED=true
|
||||||
|
SELENIUM_DOCKER_TAG=latest
|
||||||
|
|
||||||
|
|||||||
@@ -3,9 +3,9 @@ version: '2'
|
|||||||
services:
|
services:
|
||||||
chrome:
|
chrome:
|
||||||
# tests are observable at vnc://localhost:secret@localhost:5900
|
# tests are observable at vnc://localhost:secret@localhost:5900
|
||||||
image: selenium/node-chrome-debug
|
image: selenium/node-chrome-debug:${SELENIUM_DOCKER_TAG}
|
||||||
ports: ['5900:5900']
|
ports: ['5900:5900']
|
||||||
firefox:
|
firefox:
|
||||||
# tests are observable at vnc://localhost:secret@localhost:5901
|
# tests are observable at vnc://localhost:secret@localhost:5901
|
||||||
image: selenium/node-firefox-dedbug
|
image: selenium/node-firefox-debug:${SELENIUM_DOCKER_TAG}
|
||||||
ports: ['5901:5900']
|
ports: ['5901:5900']
|
||||||
|
|||||||
@@ -2,13 +2,13 @@
|
|||||||
version: '2'
|
version: '2'
|
||||||
services:
|
services:
|
||||||
hub:
|
hub:
|
||||||
image: selenium/hub
|
image: selenium/hub:${SELENIUM_DOCKER_TAG}
|
||||||
ports:
|
ports:
|
||||||
- 4444:4444
|
- 4444:4444
|
||||||
environment:
|
environment:
|
||||||
DBUS_SESSION_BUS_ADDRESS: /dev/null
|
DBUS_SESSION_BUS_ADDRESS: /dev/null
|
||||||
chrome:
|
chrome:
|
||||||
image: selenium/node-chrome
|
image: selenium/node-chrome:${SELENIUM_DOCKER_TAG}
|
||||||
links:
|
links:
|
||||||
- hub
|
- hub
|
||||||
volumes:
|
volumes:
|
||||||
@@ -18,7 +18,7 @@ services:
|
|||||||
HUB_PORT_4444_TCP_PORT: 4444
|
HUB_PORT_4444_TCP_PORT: 4444
|
||||||
DBUS_SESSION_BUS_ADDRESS: /dev/null
|
DBUS_SESSION_BUS_ADDRESS: /dev/null
|
||||||
firefox:
|
firefox:
|
||||||
image: selenium/node-firefox
|
image: selenium/node-firefox:${SELENIUM_DOCKER_TAG}
|
||||||
links:
|
links:
|
||||||
- hub
|
- hub
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
Reference in New Issue
Block a user