-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
48 lines (43 loc) · 927 Bytes
/
docker-compose.yaml
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
version: '2.1'
services:
hub:
image: selenium/hub:3.14.0-beryllium
ports: ['4444:4444']
restart: unless-stopped
healthcheck:
test: curl -v http://127.0.0.1:4444/grid/console/
timeout: 1s
retries: 22
networks:
backing-services:
aliases:
- hub
chrome:
#shm_size: 2g
image: selenium/node-chrome-debug:3.14.0-beryllium
depends_on: [hub]
environment:
HUB_HOST: hub
HUB_PORT: 4444
ports: ['5900']
restart: unless-stopped
networks:
backing-services:
aliases:
- chrome
firefox:
#shm_size: 2g
image: selenium/node-firefox-debug:3.14.0-beryllium
depends_on: [hub]
environment:
HUB_HOST: hub
HUB_PORT: 4444
ports: ['5900']
restart: unless-stopped
networks:
backing-services:
aliases:
- firefox
networks:
backing-services:
driver: bridge