-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
60 lines (54 loc) · 1.1 KB
/
docker-compose.yml
File metadata and controls
60 lines (54 loc) · 1.1 KB
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
version: '2'
services:
selenium_hub:
container_name: selenium_hub
image: selenium/hub
networks:
robottestsnw: {}
ports:
- "4444"
firefoxnode:
container_name: firefox_node
image: selenium/node-firefox
networks:
robottestsnw: {}
environment:
- HUB_PORT_4444_TCP_ADDR=selenium_hub
- HUB_PORT_4444_TCP_PORT=4444
depends_on:
- selenium_hub
ports:
- 5554
chromenode:
container_name: chrome_node
image: selenium/node-chrome
networks:
robottestsnw: {}
environment:
- HUB_PORT_4444_TCP_ADDR=selenium_hub
- HUB_PORT_4444_TCP_PORT=4444
depends_on:
- selenium_hub
ports:
- 5555
app:
container_name: demo_app
build: app/.
networks:
robottestsnw: {}
ports:
- 80
robottests:
container_name: demo_selenium_tests
command: /bin/sleep infinity
networks:
robottestsnw: {}
depends_on:
- selenium_hub
- app
build: testui/.
volumes:
- ./reports:/frontend-integration-tests/reports
networks:
robottestsnw:
driver: bridge