generated from CS3219-AY2324S1/course-assessment-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
62 lines (54 loc) · 1.09 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
version: "3.9"
services:
frontend:
build: ./Frontend
ports:
- 3001:3001
volumes:
- ./Frontend:/app
- /app/node_modules
env_file:
- ./Frontend/.env
networks:
- peer-prep-network
user-service:
build: ./UserService
ports:
- 3002:3002
volumes:
- ./UserService:/app
- /app/node_modules
networks:
- peer-prep-network
user-service-database:
image: mongo:latest
ports:
- 27018:27017
volumes:
- user_service_database_volume:/data/db
networks:
- peer-prep-network
question-service:
build: ./QuestionService
ports:
- "3003:3003"
depends_on:
- question-service-database
networks:
- peer-prep-network
question-service-database:
image: mongo:latest
ports:
- "27019:27017"
volumes:
- question_service_database_volume:/data/db
networks:
- peer-prep-network
networks:
peer-prep-network:
driver: bridge
volumes:
question_service_database_volume:
driver: local
user_service_database_volume:
driver: local