-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
50 lines (46 loc) · 1.02 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
version: "2"
services:
hub:
image: selenium/hub
ports:
- "4444:4444"
chrome:
image: selenium/node-chrome
container_name: chrome_node
links:
- hub:hub
volumes:
- /dev/shm:/dev/shm
environment:
- HUB_PORT_4444_TCP_ADDR=hub
- HUB_PORT_4444_TCP_PORT=4444
chrome-debug:
image: selenium/node-chrome-debug
container_name: chrome_node_debug
links:
- hub:hub
volumes:
- /dev/shm:/dev/shm
environment:
- HUB_PORT_4444_TCP_ADDR=hub
- HUB_PORT_4444_TCP_PORT=4444
firefox:
image: selenium/node-firefox
container_name: firefox_node
links:
- hub:hub
volumes:
- /dev/shm:/dev/shm
environment:
- HUB_PORT_4444_TCP_ADDR=hub
- HUB_PORT_4444_TCP_PORT=4444
firefox-debug:
image: selenium/node-firefox-debug
container_name: firefox_node_debug
links:
- hub:hub
volumes:
- /dev/shm:/dev/shm
environment:
- HUB_PORT_4444_TCP_ADDR=hub
- HUB_PORT_4444_TCP_PORT=4444