-
Notifications
You must be signed in to change notification settings - Fork 12
/
docker-compose.yml
256 lines (239 loc) · 6.45 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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
version: "2.4"
services:
router-http:
image: "${ROUTER_HTTP_DOCKER_IMAGE}"
ports:
- 80:8080
- 443:8443
restart: unless-stopped
volumes:
- "${CARTO3_SELFHOSTED_VOLUMES_BASE_PATH}certs/:/etc/nginx/ssl/:ro"
env_file:
- .env
logging:
driver: "local"
options:
max-size: "5M"
max-file: "20"
router-metrics:
image: "${ROUTER_METRICS_DOCKER_IMAGE}"
ports:
- 5447:5447
restart: unless-stopped
env_file:
- .env
environment:
- GOOGLE_APPLICATION_CREDENTIALS=/usr/src/certs/key.json
- LS_JAVA_OPTS=-Xms512m -Xmx1024m
volumes:
- "${CARTO3_SELFHOSTED_VOLUMES_BASE_PATH}certs/:/usr/src/certs/:ro"
logging:
driver: "local"
options:
max-size: "5M"
max-file: "20"
http-cache:
image: "${HTTP_CACHE_DOCKER_IMAGE}"
restart: unless-stopped
env_file:
- .env
depends_on:
- maps-api
logging:
driver: "local"
options:
max-size: "5M"
max-file: "20"
notifier:
image: "${NOTIFIER_DOCKER_IMAGE}"
restart: unless-stopped
env_file:
- .env
depends_on:
- workspace-api
logging:
driver: "local"
options:
max-size: "5M"
max-file: "20"
accounts-www:
image: "${ACCOUNTS_WWW_DOCKER_IMAGE}"
env_file:
- .env
restart: unless-stopped
logging:
driver: "local"
options:
max-size: "5M"
max-file: "20"
workspace-www:
image: "${WORKSPACE_WWW_DOCKER_IMAGE}"
env_file:
- .env
restart: unless-stopped
logging:
driver: "local"
options:
max-size: "5M"
max-file: "20"
workspace-api:
image: "${WORKSPACE_API_DOCKER_IMAGE}"
env_file:
- .env
environment:
- NODE_OPTIONS=--max-old-space-size=1024
depends_on:
- workspace-migrations
command: bash -c "npm run ready-to-run:built && exec node -r /usr/src/app/tsconfig-paths-bootstrap.js /usr/src/app/dist/app/index.js"
volumes: &default-volumes
- "${CARTO3_SELFHOSTED_VOLUMES_BASE_PATH}certs/:/usr/src/certs/:ro"
restart: unless-stopped
logging:
driver: "local"
options:
max-size: "5M"
max-file: "20"
workspace-subscriber:
image: "${WORKSPACE_API_DOCKER_IMAGE}"
command: bash -c "npm run ready-to-run:built && exec node -r /usr/src/app/tsconfig-paths-bootstrap.js /usr/src/app/dist/app/subscriber/index.js"
volumes: *default-volumes
env_file:
- .env
environment:
- NODE_OPTIONS=--max-old-space-size=768
restart: unless-stopped
logging:
driver: "local"
options:
max-size: "5M"
max-file: "20"
workspace-migrations:
image: "${WORKSPACE_MIGRATIONS_DOCKER_IMAGE}"
entrypoint: ["/usr/src/app/onprem-init-db.sh"]
env_file:
- .env
volumes: *default-volumes
restart: on-failure
logging:
driver: "local"
options:
max-size: "5M"
max-file: "20"
maps-api:
image: "${MAPS_API_DOCKER_IMAGE}"
env_file:
- .env
command: bash -c "npm run ready-to-run:built && exec node -r /usr/src/app/tsconfig-paths-bootstrap.js /usr/src/app/dist/app/index.js"
volumes: *default-volumes
environment:
- MAPS_API_V3_RESOURCE_URL_TEMPLATE_NEW=https://$${host}/api/$${path}
- NODE_OPTIONS=--max-old-space-size=3072
restart: unless-stopped
logging:
driver: "local"
options:
max-size: "5M"
max-file: "20"
sql-worker:
image: "${MAPS_API_DOCKER_IMAGE}"
env_file:
- .env
command: bash -c "npm run ready-to-run:built && exec node -r /usr/src/app/tsconfig-paths-bootstrap.js /usr/src/app/dist/app/subscriber/index.js"
volumes: *default-volumes
environment:
- MAPS_API_V3_RESOURCE_URL_TEMPLATE_NEW=https://$${host}/api/$${path}
- NODE_OPTIONS=--max-old-space-size=1536
restart: unless-stopped
logging:
driver: "local"
options:
max-size: "5M"
max-file: "20"
cdn-invalidator-sub:
image: "${CDN_INVALIDATOR_SUB_DOCKER_IMAGE}"
command: node -r /usr/src/app/cdn-invalidator-sub/tsconfig-paths-bootstrap.js /usr/src/app/cdn-invalidator-sub/dist/app/cdn-invalidator-sub/index.js
volumes: &default-volumes-double-level
- "${CARTO3_SELFHOSTED_VOLUMES_BASE_PATH}certs/:/usr/src/app/certs/:ro"
env_file:
- .env
environment:
- NODE_OPTIONS=--max-old-space-size=768
restart: unless-stopped
logging:
driver: "local"
options:
max-size: "5M"
max-file: "20"
import-api:
image: "${IMPORT_API_DOCKER_IMAGE}"
env_file:
- .env
environment:
- NODE_OPTIONS=--max-old-space-size=2048
command: bash -c "npm run ready-to-run:built && exec node -r /usr/src/app/tsconfig-paths-bootstrap.js /usr/src/app/dist/app/index.js"
volumes: *default-volumes
restart: unless-stopped
logging:
driver: "local"
options:
max-size: "5M"
max-file: "20"
import-worker:
image: "${IMPORT_API_DOCKER_IMAGE}"
volumes: *default-volumes
env_file:
- .env
environment:
- NODE_OPTIONS=--max-old-space-size=4096
command: node -r /usr/src/app/tsconfig-paths-bootstrap.js /usr/src/app/dist/app/subscriber/index.js
restart: unless-stopped
logging:
driver: "local"
options:
max-size: "5M"
max-file: "20"
lds-api:
image: "${LDS_API_DOCKER_IMAGE}"
env_file:
- .env
environment:
- NODE_OPTIONS=--max-old-space-size=768
command: bash -c "npm run ready-to-run:built && exec node -r /usr/src/app/tsconfig-paths-bootstrap.js /usr/src/app/dist/app/index.js"
volumes: *default-volumes
restart: unless-stopped
logging:
driver: "local"
options:
max-size: "5M"
max-file: "20"
workspace-postgres:
scale: "${LOCAL_POSTGRES_SCALE}"
image: "postgres:13.2-alpine"
env_file:
- .env
volumes:
- workspace-pgdata:/var/lib/postgresql/data
restart: unless-stopped
environment:
- POSTGRES_PASSWORD=$POSTGRES_ADMIN_PASSWORD
- POSTGRES_USER=$POSTGRES_ADMIN_USER
logging:
driver: "local"
options:
max-size: "5M"
max-file: "20"
redis:
scale: "${LOCAL_REDIS_SCALE}"
image: "redis:6.0-alpine"
env_file:
- .env
restart: unless-stopped
logging:
driver: "local"
options:
max-size: "5M"
max-file: "20"
networks:
default:
volumes:
workspace-pgdata: