forked from NTUEEInfoDep/NTUEECourseWebsite2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
75 lines (69 loc) · 1.48 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
66
67
68
69
70
71
72
73
74
75
# This file is used for production, not for development!
version: "3.4"
services:
course-frontend:
build:
context: .
dockerfile: ./prod-support/frontend/Dockerfile
expose:
- "3000"
networks:
- course-frontend
environment:
- REACT_APP_API_HOST=course-backend
links:
- "course-backend"
course-backend:
build:
context: .
dockerfile: ./prod-support/backend/Dockerfile
expose:
- "8000"
networks:
- course-backend
environment:
- DISTRIBUTE_SERVER_HOST=course-distribute-server
- DISTRIBUTE_SERVER_PORT=8001
- MONGO_HOST=course-mongodb
- REDIS_HOST=course-redisdb
links:
- "course-distribute-server"
course-mongodb:
image: mongo
environment:
- MONGO_INITDB_ROOT_USERNAME=eeinfo
- MONGO_INITDB_ROOT_PASSWORD=R9ujPAQBk4X2fdkv
expose:
- "27017"
networks:
- course-mongodb
course-redisdb:
image: redis
expose:
- "6379"
networks:
- course-redisdb
course-distribute-server:
build:
context: .
dockerfile: ./prod-support/distribute-server/Dockerfile
expose:
- "8001"
networks:
- course-distribute-server
networks:
course-frontend:
external:
name: eeinfo
course-backend:
external:
name: eeinfo
course-distribute-server:
external:
name: eeinfo
course-mongodb:
external:
name: eeinfo
course-redisdb:
external:
name: eeinfo