-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
docker-compose.yml
173 lines (159 loc) · 3.69 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
version: '3.7'
services:
account-service:
build: ./account-svc
image: boboweike/account-svc
environment:
- SPRING_PROFILES_ACTIVE
- SERVER_PORT
- SIGNING_SECRET
- SENTRY_DSN
- EMAIL_SERVICE_ENDPOINT
- COMPANY_SERVICE_ENDPOINT
- BOT_SERVICE_ENDPOINT
- INTERCOM_ACCESS_TOKEN
- ACCOUNT_DATASOURCE_URL
- ACCOUNT_DATASOURCE_USERNAME
- ACCOUNT_DATASOURCE_PASSWORD
depends_on:
- bot-service
- email-service
networks:
- internal_access
- external_access # db access
company-service:
build: ./company-svc
image: boboweike/company-svc
environment:
- SPRING_PROFILES_ACTIVE
- SERVER_PORT
- SIGNING_SECRET
- SENTRY_DSN
- EMAIL_SERVICE_ENDPOINT
- ACCOUNT_SERVICE_ENDPOINT
- BOT_SERVICE_ENDPOINT
- COMPANY_DATASOURCE_URL
- COMPANY_DATASOURCE_USERNAME
- COMPANY_DATASOURCE_PASSWORD
depends_on:
- bot-service
- email-service
networks:
- internal_access
- external_access # db access
bot-service:
build: ./bot-svc
image: boboweike/bot-svc
environment:
- SPRING_PROFILES_ACTIVE
- SERVER_PORT
- SENTRY_DSN
- EMAIL_SERVICE_ENDPOINT
- ACCOUNT_SERVICE_ENDPOINT
- COMPANY_SERVICE_ENDPOINT
- SMS_SERVICE_ENDPOINT
depends_on:
- email-service
# - sms-svc # commented for demo
networks:
- internal_access
email-service:
build: ./mail-svc
image: boboweike/mail-svc
environment:
- SPRING_PROFILES_ACTIVE
- SERVER_PORT
- SENTRY_DSN
- ALIYUN_ACCESS_KEY
- ALIYUN_ACCESS_SECRET
networks:
- internal_access
- external_access # aliyun access
# commented for demo
# sms-service:
# build: ./sms-svc
# image: sms-svc
# environment:
# - SPRING_PROFILES_ACTIVE=test
whoami-service:
build: ./whoami-svc
image: boboweike/whoami-svc
environment:
- SPRING_PROFILES_ACTIVE
- SERVER_PORT
- SENTRY_DSN
- INTERCOM_APP_ID
- INTERCOM_SIGNING_SECRET
- ACCOUNT_SERVICE_ENDPOINT
- COMPANY_SERVICE_ENDPOINT
depends_on:
- account-service
- company-service
networks:
- internal_access
# commented for demo
# ical-service:
# build: ./ical-svc
# image: ical-svc
# environment:
# - SPRING_PROFILES_ACTIVE=test
# depends_on:
# - company-service
www-service:
build: ./web-app
image: boboweike/www-svc
environment:
- SPRING_PROFILES_ACTIVE
- SERVER_PORT
- SENTRY_DSN
- SIGNING_SECRET
- ACCOUNT_SERVICE_ENDPOINT
- COMPANY_SERVICE_ENDPOINT
- EMAIL_SERVICE_ENDPOINT
- RECAPTCHA_PUBLIC
- RECAPTCHA_PRIVATE
depends_on:
- account-service
- company-service
- email-service
networks:
- internal_access
faraday-service:
build: ./faraday
image: boboweike/faraday-svc
ports:
- 80:80
environment:
- SPRING_PROFILES_ACTIVE
- SERVER_PORT
- SENTRY_DSN
- SIGNING_SECRET
depends_on:
- account-service
- company-service
- www-service
- whoami-service
# - ical-service # commented for demo
- myaccount-service
- app-service
networks:
- internal_access
- external_access
myaccount-service:
build:
context: ./frontend
dockerfile: myaccount/Dockerfile
image: boboweike/myaccount-spa
networks:
- internal_access
app-service:
build:
context: ./frontend
dockerfile: app/Dockerfile
image: boboweike/app-spa
networks:
- internal_access
networks:
internal_access:
internal: true
external_access: