-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
47 lines (43 loc) · 1.17 KB
/
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
42
43
44
45
46
47
version: '2'
services:
selenium_hub:
image: selenium/hub:3.0.1-aluminum
container_name: selenium_hub
privileged: true
ports:
- 4444:4444
environment:
- GRID_TIMEOUT=120000
- GRID_BROWSER_TIMEOUT=120000
networks:
- selenium_grid_internal
nodechrome1:
image: selenium/node-chrome-debug:3.0.1-aluminum
privileged: true
depends_on:
- selenium_hub
ports:
- 5900
environment:
- no_proxy=localhost
- TZ=Europe/London
- HUB_PORT_4444_TCP_ADDR=selenium_hub
- HUB_PORT_4444_TCP_PORT=4444
networks:
- selenium_grid_internal
nodechrome2:
image: selenium/node-chrome-debug:3.0.1-aluminum
privileged: true
depends_on:
- selenium_hub
ports:
- 5900
environment:
- no_proxy=localhost
- TZ=Europe/London
- HUB_PORT_4444_TCP_ADDR=selenium_hub
- HUB_PORT_4444_TCP_PORT=4444
networks:
- selenium_grid_internal
networks:
selenium_grid_internal: