forked from microrealestate/microrealestate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.microservices.dev.yml
106 lines (106 loc) · 3.84 KB
/
docker-compose.microservices.dev.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
version: "3.3"
services:
###############################################################################
# Mongo
###############################################################################
mongo:
ports:
- "$MONGO_PORT:$MONGO_PORT"
###############################################################################
# Gateway
###############################################################################
gateway:
build:
context: .
dockerfile: services/gateway/dev.Dockerfile
volumes:
- ./services/common:/usr/app/services/common
- ./services/gateway:/usr/app/services/gateway
- /usr/app/node_modules
- /usr/app/services/gateway/node_modules
ports:
- "$GATEWAY_DEBUG_PORT:9225"
###############################################################################
# Authenticator
###############################################################################
authenticator:
build:
context: .
dockerfile: services/authenticator/dev.Dockerfile
volumes:
- ./services/common:/usr/app/services/common
- ./services/authenticator:/usr/app/services/authenticator
- /usr/app/node_modules
- /usr/app/services/authenticator/node_modules
ports:
- "$AUTHENTICATOR_DEBUG_PORT:9226"
###############################################################################
# PDFGenerator
###############################################################################
pdfgenerator:
build:
context: .
dockerfile: services/pdfgenerator/dev.Dockerfile
volumes:
- ./services/common:/usr/app/services/common
- ./services/pdfgenerator:/usr/app/services/pdfgenerator
- /usr/app/node_modules
- /usr/app/services/pdfgenerator/node_modules
ports:
- "$PDFGENERATOR_DEBUG_PORT:9227"
###############################################################################
# Emailer
###############################################################################
emailer:
build:
context: .
dockerfile: services/emailer/dev.Dockerfile
volumes:
- ./services/common:/usr/app/services/common
- ./services/emailer:/usr/app/services/emailer
- /usr/app/node_modules
- /usr/app/services/emailer/node_modules
ports:
- "$EMAILER_DEBUG_PORT:9228"
###############################################################################
# api
###############################################################################
api:
build:
context: .
dockerfile: services/api/dev.Dockerfile
volumes:
- ./services/common:/usr/app/services/common
- ./services/api:/usr/app/services/api
- /usr/app/node_modules
- /usr/app/services/api/node_modules
ports:
- "$API_DEBUG_PORT:9229"
###############################################################################
# Landlord frontend
###############################################################################
landlord-frontend:
build:
context: .
dockerfile: webapps/landlord/dev.Dockerfile
volumes:
- ./webapps/commonui:/usr/app/webapps/commonui
- ./webapps/landlord:/usr/app/webapps/landlord
- /usr/app/webapps/landlord/public
- /usr/app/node_modules
- /usr/app/webapps/landlord/node_modules
- /usr/app/webapps/landlord/.next
###############################################################################
# Tenant frontend
###############################################################################
tenant-frontend:
build:
context: .
dockerfile: webapps/tenant/dev.Dockerfile
volumes:
- ./webapps/commonui:/usr/app/webapps/commonui
- ./webapps/tenant:/usr/app/webapps/tenant
- /usr/app/webapps/tenant/public
- /usr/app/node_modules
- /usr/app/webapps/tenant/node_modules
- /usr/app/webapps/tenant/.next