-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
195 lines (180 loc) · 3.54 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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
version: "3.3"
services:
lab:
build:
context: .
image: lab
env_file: docker-compose.env
environment:
NODEID: labNode
SERVICES: lab.service
LAB_PORT: 3210
ports:
- 3210:3210
depends_on:
nats:
condition: service_started
networks:
- default
- gateway
api:
restart: unless-stopped
build:
context: .
image: api
deploy:
replicas: 3
env_file: docker-compose.env
environment:
NODEID: apiNode
SERVICEDIR: app/dist/src/services/api
PORT: 2000
healthcheck:
test: ['CMD-SHELL', 'curl --fail http://localhost:2000/health || exit 1']
interval: 30s
timeout: 5s
retries: 10
depends_on:
nats:
condition: service_started
networks:
- default
- gateway
auth:
build:
context: .
image: auth
env_file: docker-compose.env
environment:
NODEID: authNode
SERVICEDIR: app/dist/src/services/auth
PORT: 2002
depends_on:
api:
condition: service_started
nats:
condition: service_started
redis:
condition: service_started
networks:
- default
- gateway
posts:
build:
context: .
image: posts
env_file: docker-compose.env
environment:
NODEID: postsNode
SERVICEDIR: app/dist/src/services/posts
PORT: 2004
depends_on:
postgres:
condition: service_healthy
nats:
condition: service_started
networks:
- default
- gateway
products:
build:
context: .
image: products
env_file: docker-compose.env
environment:
NODEID: productsNode
SERVICEDIR: app/dist/src/services/products
PORT: 2005
depends_on:
postgres:
condition: service_healthy
nats:
condition: service_started
networks:
- default
- gateway
bee:
build:
context: .
image: bee
env_file: docker-compose.env
environment:
NODEID: beeNode
SERVICEDIR: app/dist/src/services/bee
PORT: 2006
depends_on:
nats:
condition: service_started
networks:
- default
- gateway
notify:
build:
context: .
image: notify
env_file: docker-compose.env
environment:
NODEID: notifyNode
SERVICEDIR: app/dist/src/services/notify
PORT: 2007
depends_on:
nats:
condition: service_started
networks:
- default
- gateway
postgres:
image: postgres:13-alpine
env_file: docker-compose.env
environment:
PGDATA: /var/lib/postgresql/data
healthcheck:
test: ['CMD-SHELL', 'pg_isready -U postgres']
interval: 10s
timeout: 5s
retries: 5
ports:
- 5432:5432
volumes:
- ./temp:/var/lib/postgresql/data
networks:
- default
- gateway
mongo:
image: mongo:4
networks:
- default
- gateway
nats:
image: nats:2
networks:
- default
- gateway
redis:
image: redis:alpine
env_file: docker-compose.env
ports:
- 6379:6379
networks:
- default
- gateway
proxy:
restart: unless-stopped
image: nginx
env_file: docker-compose.env
ports:
- 8000:8000
volumes:
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf
depends_on:
api:
condition: service_started
networks:
- default
- gateway
networks:
gateway: {}
default:
internal: true
volumes:
data: