-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
85 lines (77 loc) · 1.82 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
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
services:
app:
build: .
container_name: app_test
volumes:
- ./output:/app/target
networks:
- grid
command: "test"
links:
- "selenium-hub:selenium-hub"
depends_on:
selenium-hub:
condition: service_healthy
chrome:
image: selenium/node-chrome:4.9.0-20230421
container_name: node-chrome
shm_size: 2gb
depends_on:
selenium-hub:
condition: service_healthy
environment:
- SE_EVENT_BUS_HOST=selenium-hub
- SE_EVENT_BUS_PUBLISH_PORT=4442
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443
- SE_NODE_MAX_INSTANCES=2
- SE_NODE_MAX_SESSIONS=2
networks:
- grid
edge:
image: selenium/node-edge:4.9.0-20230421
container_name: node-edge
shm_size: 2gb
depends_on:
selenium-hub:
condition: service_healthy
environment:
- SE_EVENT_BUS_HOST=selenium-hub
- SE_EVENT_BUS_PUBLISH_PORT=4442
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443
- SE_NODE_MAX_INSTANCES=2
- SE_NODE_MAX_SESSIONS=2
networks:
- grid
firefox:
image: selenium/node-firefox:4.9.0-20230421
container_name: node-firefox
shm_size: 2gb
depends_on:
selenium-hub:
condition: service_healthy
environment:
- SE_EVENT_BUS_HOST=selenium-hub
- SE_EVENT_BUS_PUBLISH_PORT=4442
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443
- SE_NODE_MAX_INSTANCES=2
- SE_NODE_MAX_SESSIONS=2
networks:
- grid
selenium-hub:
image: selenium/hub:4.9.0-20230421
container_name: selenium-hub
ports:
- "4442:4442"
- "4443:4443"
- "4444:4444"
networks:
- grid
healthcheck:
test: curl --fail http://localhost:4444 || exit 1
interval: 5s
timeout: 10s
retries: 5
networks:
grid:
driver: bridge
name: grid-driver