-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-v3.yml
106 lines (100 loc) · 3.45 KB
/
docker-compose-v3.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# To execute this docker-compose yml file use 'docker-compose -f docker-compose-v3.yml up'
# Add the '-d' flag at the end for the detached execution
# To stop the execution, hit CTRL+C, and then 'docker-compose -f docker-compose-v3.yml down'
version: "3"
services:
jaegar:
image: jaegertracing/all-in-one:1.17
ports:
- "16686:16686"
- "14250:14250"
chrome:
image: selenium/node-chrome:4.10.0-20230607
privileged: true
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
- SE_NODE_GRID_URL=http://localhost:4444
- SE_NODE_MAX_INSTANCES=3
- SE_NODE_MAX_SESSIONS=3
- SE_NODE_OVERRIDE_MAX_SESSIONS=true
- SE_ENABLE_TRACING=true
- JAVA_OPTS=-Dotel.traces.exporter=jaeger -Dotel.exporter.jaeger.endpoint=http://jaegar:14250 -Dotel.resource.attributes=service.name=selenium-node-chrome
- SE_VNC_NO_PASSWORD=1
# - SE_OPTS=--log-level FINE
ports:
- "6900:5900"
chrome_video:
image: selenium/video:ffmpeg-4.3.1-20230508
volumes:
- ./videos:/videos
depends_on:
- chrome
environment:
- DISPLAY_CONTAINER_NAME=chrome
- FILE_NAME=chrome_video.mp4
edge:
image: selenium/node-edge:4.10.0-20230607
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
- SE_NODE_GRID_URL=http://localhost:4444
- SE_NODE_MAX_INSTANCES=3
- SE_NODE_MAX_SESSIONS=3
- SE_NODE_OVERRIDE_MAX_SESSIONS=true
- SE_ENABLE_TRACING=true
- JAVA_OPTS=-Dotel.traces.exporter=jaeger -Dotel.exporter.jaeger.endpoint=http://jaegar:14250 -Dotel.resource.attributes=service.name=selenium-node-chrome
- SE_VNC_NO_PASSWORD=1
ports:
- "6901:5900"
firefox:
image: selenium/node-firefox:4.10.0-20230607
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
- SE_NODE_GRID_URL=http://localhost:4444
- SE_NODE_MAX_INSTANCES=3
- SE_NODE_MAX_SESSIONS=3
- SE_NODE_OVERRIDE_MAX_SESSIONS=true
- SE_ENABLE_TRACING=true
- JAVA_OPTS=-Dotel.traces.exporter=jaeger -Dotel.exporter.jaeger.endpoint=http://jaegar:14250 -Dotel.resource.attributes=service.name=selenium-node-chrome
- SE_VNC_NO_PASSWORD=1
# - SE_OPTS=--log-level FINE
ports:
- "6902:5900"
selenium-hub:
image: selenium/hub:4.10.0-20230607
container_name: selenium-hub
ports:
- "4442:4442"
- "4443:4443"
- "4444:4444"
depends_on:
- jaegar
environment:
- SE_ENABLE_TRACING=true
- JAVA_OPTS=-Dotel.traces.exporter=jaeger -Dotel.exporter.jaeger.endpoint=http://jaegar:14250 -Dotel.resource.attributes=service.name=selenium-hub
# - SE_OPTS=--log-level FINE
uitest-module:
image: deepkandey/uitestautomation:latest
depends_on:
- chrome
- firefox
# - edge
environment:
- HUB_HOST=selenium-hub
volumes:
- ./test-result-extent:/usr/share/UITestAutomationFramework/test-output
# MaxInstances applies to a specific browser, while MaxSessions applies to the entire node.