-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
44 lines (41 loc) · 969 Bytes
/
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
version: '3'
services:
nitewatch-service:
container_name: nitewatch-container
build: .
image: jose-nightwatch
volumes:
- .:/app/
- /app/node_modules
tty: true
depends_on:
- selenium-hub
- firefox
- chrome
selenium-hub:
image: selenium/hub
container_name: hub
ports:
- '4444:4444'
chrome:
image: selenium/node-chrome-debug
depends_on:
- selenium-hub
environment:
- HUB_HOST=hub
- HUB_PORT=4444
ports:
- '5901:5900'
privileged: true
shm_size: '2g'
firefox:
image: selenium/node-firefox-debug
depends_on:
- selenium-hub
environment:
- HUB_HOST=hub
- HUB_PORT=4444
ports:
- '5902:5900'
shm_size: '2g'
privileged: true