-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
52 lines (47 loc) · 1.03 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
version: '3'
services:
angular-course:
container_name: angular-course-frontend
build: docker/frontend
ports:
- 4200:4200
volumes:
- ./:/var/www/angular-course
tty: true
networks:
- angular-course-network
selenium_hub:
image: selenium/hub
container_name: selenium_hub
ports:
- 4444:4444
environment:
- GRID_TIMEOUT=120000
- GRID_BROWSER_TIMEOUT=120000
networks:
- angular-course-network
nodechrome:
image: selenium/node-chrome
privileged: true
environment:
- no_proxy=localhost
- HUB_PORT_4444_TCP_ADDR=selenium_hub
- HUB_PORT_4444_TCP_PORT=4444
ports:
- 5900
networks:
- angular-course-network
nodefirefox:
image: selenium/node-firefox
privileged: true
environment:
- no_proxy=localhost
- HUB_PORT_4444_TCP_ADDR=selenium_hub
- HUB_PORT_4444_TCP_PORT=4444
ports:
- 5900
networks:
- angular-course-network
networks:
angular-course-network:
external: true