forked from Tom-Camp/va-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.testing.yml
51 lines (51 loc) · 1.14 KB
/
docker-compose.testing.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
version: '3'
services:
gemini:
image: civicactions/docker-gemini:latest
volumes:
- ./tests/visual:/home/node/app
command: gemini-gui -a --hostname=0.0.0.0 .
environment:
NODE_NO_WARNINGS: 1
depends_on:
- web
- chrome
- firefox
ports:
- "8119:8000"
networks:
- web
hub:
image: selenium/hub:3.9.1-actinium
networks:
- web
chrome:
image: selenium/node-chrome:3.9.1-actinium
environment:
- HUB_PORT_4444_TCP_ADDR=hub
- HUB_PORT_4444_TCP_PORT=4444
expose:
- "5555"
volumes:
- /dev/shm:/dev/shm
depends_on:
- web
- hub
networks:
- web
firefox:
image: selenium/node-firefox:2.53.1
environment:
- HUB_PORT_4444_TCP_ADDR=hub
- HUB_PORT_4444_TCP_PORT=4444
expose:
- "5555"
volumes:
- /dev/shm:/dev/shm
depends_on:
- web
- hub
networks:
- web
networks:
web: