forked from rqueraud/e2t
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
54 lines (53 loc) · 1004 Bytes
/
docker-compose.yml
File metadata and controls
54 lines (53 loc) · 1004 Bytes
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
version: '3.3'
volumes:
mongodbdata:
services:
mongo:
image: "mongo:3.0"
ports:
- "27017:27017" # For debugging purposes
command: --smallfiles
volumes:
- mongodbdata:/data/db
rabbit:
image: "rabbitmq:3-management"
ports:
- "15672:15672" # For debugging purposes
- "5672:5672" # For debugging purposes
api:
build:
context: api/
dockerfile: ./Dockerfile
depends_on:
- "rabbit"
- "mongo"
ports:
- 3000:3000
cartographer:
build:
context: cartographer/
dockerfile: ./Dockerfile
depends_on:
- "rabbit"
- "mongo"
front:
build:
context: front/
dockerfile: ./Dockerfile
depends_on:
- "mongo"
- "api"
ports:
- 80:80
validation:
build:
context: validation/
dockerfile: ./Dockerfile
ports:
- 8080:8080
quizz:
build:
context: quizz/
dockerfile: ./Dockerfile
ports:
- 8090:8090