-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
65 lines (59 loc) · 1.11 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
53
54
55
56
57
58
59
60
61
62
63
64
65
version: '3'
services:
web:
build: .
ports:
- "3000:3000"
- "4000:4000"
volumes:
- .:/usr/src/cm
- gem-cache:/gems
env_file:
- .env/development/web
- .env/development/database
networks:
default:
aliases:
- web
redis:
image: redis
networks:
- default
database:
image: postgres
volumes:
- db-data:/var/lib/postgresql/data
env_file:
- .env/development/database
networks:
- default
selenium-hub:
image: selenium/hub
container_name: cm-selenium
ports:
- 4442:4442
- 4443:4443
- 4444:4444
networks:
- default
environment:
GRID_MAX_SESSION: 10
selenium-chrome:
image: selenium/node-chrome
logging:
driver: none
links:
- selenium-hub
networks:
- default
depends_on:
- selenium-hub
ports:
- "5900-5902:5900"
environment:
- SE_EVENT_BUS_HOST=selenium-hub
- SE_EVENT_BUS_PUBLISH_PORT=4442
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443
volumes:
db-data:
gem-cache: