forked from shuttle-hq/shuttle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
300 lines (300 loc) · 7.87 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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
version: "3.7"
volumes:
auth-vol:
# builder-store-vol:
gateway-vol:
postgres-vol:
resource-recorder-vol:
mongodb-vol:
networks:
user-net:
attachable: true
ipam:
driver: default
config:
- subnet: 10.99.0.0/16
default:
attachable: false
ipam:
driver: default
config:
- subnet: 10.100.0.0/16
services:
auth:
image: "${CONTAINER_REGISTRY}/auth:${AUTH_TAG}"
ports:
- 8008:8000
deploy:
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
update_config:
order: start-first
failure_action: rollback
delay: 10s
rollback_config:
parallelism: 0
order: stop-first
placement:
constraints:
- node.hostname==controller
networks:
default:
user-net:
volumes:
- auth-vol:/var/lib/shuttle-auth
environment:
- RUST_LOG=${RUST_LOG}
- SHUTTLE_ENV=${SHUTTLE_ENV}
command:
- "--db-connection-uri=${CONTROL_DB_POSTGRES_URI}"
- "start"
- "--address=0.0.0.0:8000"
- "--stripe-secret-key=${STRIPE_SECRET_KEY}"
- "--jwt-signing-private-key=${AUTH_JWTSIGNING_PRIVATE_KEY}"
healthcheck:
test: curl --fail http://localhost:8000/ || exit 1
interval: 1m
timeout: 10s
retries: 5
# These options are pending on an upgrade to Docker Engine version 25.0.
# Using them will result in error because they are not handled gracefully.
# start_period: 10s
# start_interval: 2s
# builder:
# image: "${CONTAINER_REGISTRY}/builder:${BUILDER_TAG}"
# depends_on:
# - auth
# ports:
# - 8009:8000
# deploy:
# restart_policy:
# condition: on-failure
# delay: 5s
# max_attempts: 3
# update_config:
# order: start-first
# failure_action: rollback
# delay: 10s
# rollback_config:
# parallelism: 0
# order: stop-first
# placement:
# constraints:
# - node.hostname==builder
# networks:
# user-net:
# volumes:
# - builder-store-vol:/nix/store
# environment:
# - RUST_LOG=${RUST_LOG}
# - SHUTTLE_ENV=${SHUTTLE_ENV}
# command:
# - "--address=0.0.0.0:8000"
# - "--auth-uri=http://auth:8000"
gateway:
image: "${CONTAINER_REGISTRY}/gateway:${GATEWAY_TAG}"
depends_on:
- provisioner
- auth
ports:
- 7999:7999
- 8000:8000
- 8001:8001
deploy:
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
update_config:
order: start-first
failure_action: rollback
delay: 10s
rollback_config:
parallelism: 0
order: stop-first
placement:
constraints:
- node.hostname==controller
networks:
user-net:
volumes:
- gateway-vol:/var/lib/shuttle
# This image needs to run highly privileged in order to
# orchestrate user runtimes safely
- ${DOCKER_SOCK}:/var/run/docker.sock
# We need to mount this directory to be able to read docker
# stats from it. We mount it as read-only.
# TODO: this directory will vary depending on the host OS,
# we should make it more dynamic.
- /sys/fs/cgroup:/sys/fs/cgroup:ro
environment:
- RUST_LOG=${RUST_LOG}
- SHUTTLE_ENV=${SHUTTLE_ENV}
command:
- "--state=/var/lib/shuttle"
- "start"
- "--control=0.0.0.0:8001"
- "--user=0.0.0.0:8000"
- "--bouncer=0.0.0.0:7999"
- "--image=${CONTAINER_REGISTRY}/deployer:${DEPLOYER_TAG}"
- "--prefix=shuttle_"
- "--network-name=${STACK}_user-net"
- "--docker-host=/var/run/docker.sock"
- "--auth-uri=http://auth:8000"
- "--deploys-api-key=${DEPLOYS_API_KEY}"
- "--provisioner-host=provisioner"
- "--builder-host=builder"
- "--proxy-fqdn=${APPS_FQDN}"
- "--use-tls=${USE_TLS}"
- "--admin-key=${GATEWAY_ADMIN_KEY}"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8001"]
interval: 1m
timeout: 15s
retries: 15
#start_period: 30s
logger:
image: "${CONTAINER_REGISTRY}/logger:${LOGGER_TAG}"
depends_on:
- auth
deploy:
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
update_config:
order: start-first
failure_action: rollback
delay: 10s
rollback_config:
parallelism: 0
order: stop-first
placement:
constraints:
- node.hostname==controller
networks:
user-net:
default:
environment:
- RUST_LOG=${RUST_LOG}
- SHUTTLE_ENV=${SHUTTLE_ENV}
command:
- "--address=0.0.0.0:8000"
- "--db-connection-uri=${LOGGER_POSTGRES_URI}"
- "--auth-uri=http://auth:8000"
provisioner:
image: "${CONTAINER_REGISTRY}/provisioner:${PROVISIONER_TAG}"
depends_on:
- postgres
- mongodb
- auth
environment:
- RUST_LOG=${RUST_LOG}
- SHUTTLE_ENV=${SHUTTLE_ENV}
networks:
user-net:
deploy:
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
update_config:
order: start-first
failure_action: rollback
delay: 10s
rollback_config:
parallelism: 0
order: stop-first
placement:
constraints:
- node.hostname==provisioner
command:
- "--ip=0.0.0.0"
- "--port=8000"
- "--shared-pg-uri=postgres://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres"
- "--shared-mongodb-uri=mongodb://${MONGO_INITDB_ROOT_USERNAME}:${MONGO_INITDB_ROOT_PASSWORD}@mongodb:27017/admin"
- "--internal-mongodb-address=mongodb"
- "--internal-pg-address=postgres"
- "--fqdn=${DB_FQDN}"
- "--auth-uri=http://auth:8000"
- "--gateway-uri=http://gateway:8001"
- "--resource-recorder-uri=http://resource-recorder:8000"
resource-recorder:
image: "${CONTAINER_REGISTRY}/resource-recorder:${RESOURCE_RECORDER_TAG}"
depends_on:
- auth
environment:
- RUST_LOG=${RUST_LOG}
- SHUTTLE_ENV=${SHUTTLE_ENV}
networks:
user-net:
volumes:
- resource-recorder-vol:/var/lib/shuttle
deploy:
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
update_config:
order: start-first
failure_action: rollback
delay: 10s
rollback_config:
parallelism: 0
order: stop-first
placement:
constraints:
- node.hostname==controller
command:
- "--address=0.0.0.0:8000"
- "--state=/var/lib/shuttle"
- "--auth-uri=http://auth:8000"
postgres:
image: "${CONTAINER_REGISTRY}/postgres:${POSTGRES_TAG}"
restart: always
environment:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
networks:
user-net:
volumes:
- postgres-vol:/var/lib/postgresql/data
ports:
- 8002:8000
- 5432:5432
deploy:
placement:
constraints:
- node.hostname==postgres
mongodb:
image: docker.io/library/mongo:5.0.10
restart: always
networks:
user-net:
volumes:
- mongodb-vol:/data/db
environment:
MONGO_INITDB_ROOT_USERNAME: ${MONGO_INITDB_ROOT_USERNAME}
MONGO_INITDB_ROOT_PASSWORD: ${MONGO_INITDB_ROOT_PASSWORD}
deploy:
placement:
constraints:
- node.hostname==postgres
otel-collector:
image: "${CONTAINER_REGISTRY}/otel:${OTEL_TAG}"
volumes:
# Pull docker stats
- ${DOCKER_SOCK}:/var/run/docker.sock:ro
restart: always
networks:
user-net:
environment:
- SHUTTLE_ENV=${SHUTTLE_ENV}
- DD_API_KEY=${DD_API_KEY}
- DD_ENV=${DD_ENV}
- HONEYCOMB_API_KEY=${HONEYCOMB_API_KEY}
deploy:
placement:
constraints:
- node.hostname==controller