-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.selenium-hub.yml
90 lines (82 loc) · 1.89 KB
/
docker-compose.selenium-hub.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
version: '3.8'
services:
chrome:
image: selenium/node-chrome
shm_size: 2gb
depends_on:
- selenium-hub
environment:
- SE_EVENT_BUS_HOST=selenium-hub
- SE_EVENT_BUS_PUBLISH_PORT=4442
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443
healthcheck:
test: chromedriver --version
chrome_video:
image: selenium/video
volumes:
- ./videos:/videos
depends_on:
- chrome
environment:
- DISPLAY_CONTAINER_NAME=chrome
- FILE_NAME=selenium_chrome_video.mp4
edge:
image: selenium/node-edge
shm_size: 2gb
depends_on:
- selenium-hub
environment:
- SE_EVENT_BUS_HOST=selenium-hub
- SE_EVENT_BUS_PUBLISH_PORT=4442
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443
healthcheck:
test: msedgedriver --version
edge_video:
image: selenium/video
volumes:
- ./videos:/videos
depends_on:
- edge
environment:
- DISPLAY_CONTAINER_NAME=edge
- FILE_NAME=selenium_edge_video.mp4
firefox:
image: selenium/node-firefox
shm_size: 2gb
depends_on:
- selenium-hub
environment:
- SE_EVENT_BUS_HOST=selenium-hub
- SE_EVENT_BUS_PUBLISH_PORT=4442
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443
healthcheck:
test: geckodriver --version
firefox_video:
image: selenium/video
volumes:
- ./videos:/videos
depends_on:
- firefox
environment:
- DISPLAY_CONTAINER_NAME=firefox
- FILE_NAME=selenium_firefox_video.mp4
selenium-hub:
image: selenium/hub
container_name: selenium-hub
ports:
- "4442:4442"
- "4443:4443"
- "4444:4444"
nightwatch:
build: .
init: true
network_mode: host
environment:
- BROWSER=chrome,firefox,edge
depends_on:
chrome:
condition: service_healthy
firefox:
condition: service_healthy
edge:
condition: service_healthy