-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
41 lines (41 loc) · 1010 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
version: "3"
services:
selenium-hub:
image: selenium/hub
container_name: selenium-hub
ports:
- "4444:4444"
chrome:
image: selenium/node-chrome
depends_on:
- selenium-hub
environment:
- HUB_PORT_4444_TCP_ADDR=selenium-hub
- HUB_PORT_4444_TCP_PORT=4444
firefox:
image: selenium/node-firefox
depends_on:
- selenium-hub
environment:
- HUB_PORT_4444_TCP_ADDR=selenium-hub
- HUB_PORT_4444_TCP_PORT=4444
search-module:
image: vinsdocker/containertest:demo
container_name: search-module
depends_on:
- firefox
- chrome
environment:
- MODULE=search-module.xml
- BROWSER=firefox
- SELENIUM_HUB=selenium-hub
order-module:
image: vinsdocker/containertest:demo
container_name: order-module
depends_on:
- firefox
- chrome
environment:
- MODULE=order-module.xml
- BROWSER=chrome
- SELENIUM_HUB=selenium-hub