-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
463 lines (446 loc) · 16.6 KB
/
Copy pathdocker-compose.yml
File metadata and controls
463 lines (446 loc) · 16.6 KB
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
# QuantDinger Docker Compose - One-Click Deployment
# Usage:
# 1. Copy env.example to .env and edit your settings
# cp backend_api_python/env.example backend_api_python/.env
# 2. IMPORTANT: Generate and set a secure SECRET_KEY in backend_api_python/.env
# SECRET_KEY=$(python3 -c "import secrets; print(secrets.token_hex(32))")
# Or edit backend_api_python/.env and replace SECRET_KEY value
# 3. docker-compose up -d --build
# 4. Open http://localhost:8888 (web) or http://localhost:8889 (mobile H5)
#
# Backend is built from local source. Frontend and mobile H5 are pulled from
# GHCR. Override tags or image paths via FRONTEND_IMAGE / MOBILE_IMAGE /
# IMAGE_TAG in a project-root `.env`.
#
# Note: The container will NOT start if SECRET_KEY is using the default value.
# This is a security measure to prevent insecure deployments.
#
# Docker image sources:
# Default uses official Docker Hub images.
# To switch source globally, set a single `IMAGE_PREFIX` in project-root `.env`.
# Examples: empty (official), `docker.m.daocloud.io/library/`,
# `docker.xuanyuan.me/library/`.
# Backend Dockerfile uses official Debian/PyPI sources by default.
# For mainland China builds, set BUILD_REGION=cn to use Aliyun mirrors with fallback.
# The backend build defaults to a Docker Hub mirror for python:3.12 because
# Docker Hub auth/base-image pulls are a common first-install failure. Set
# PYTHON_BASE_IMAGE=python:3.12-slim-bookworm to force the official source.
x-backend-build: &backend-build
context: ./backend_api_python
dockerfile: Dockerfile
args:
BASE_IMAGE: ${PYTHON_BASE_IMAGE:-docker.1ms.run/library/python:3.12-slim-bookworm}
BUILD_REGION: ${BUILD_REGION:-global}
APP_VERSION: ${APP_VERSION:-}
GIT_TAG: ${GIT_TAG:-${IMAGE_TAG:-}}
x-backend-runtime: &backend-runtime
init: true
security_opt:
- no-new-privileges:true
pids_limit: ${BACKEND_PIDS_LIMIT:-512}
stop_grace_period: ${BACKEND_STOP_GRACE_PERIOD:-45s}
logging:
driver: json-file
options:
max-size: ${CONTAINER_LOG_MAX_SIZE:-20m}
max-file: ${CONTAINER_LOG_MAX_FILES:-5}
x-worker-environment: &worker-environment
TZ: ${TZ:-Asia/Shanghai}
LOG_FORMAT: ${LOG_FORMAT:-json}
DATABASE_URL: postgresql://${POSTGRES_USER:-quantdinger}:${POSTGRES_PASSWORD:-quantdinger123}@postgres:5432/${POSTGRES_DB:-quantdinger}
DB_TYPE: postgresql
REDIS_HOST: redis
REDIS_PORT: 6379
REDIS_PASSWORD: ${REDIS_PASSWORD:-}
REDIS_CACHE_NAMESPACE: ${REDIS_CACHE_NAMESPACE:-quantdinger:cache:v1}
CACHE_ENABLED: "true"
CELERY_TASKS_ENABLED: "true"
CELERY_REDIS_HOST: redis-jobs
CELERY_REDIS_PORT: 6379
CELERY_REDIS_PASSWORD: ${CELERY_REDIS_PASSWORD:-}
CELERY_BROKER_DB: 0
CELERY_RESULT_DB: 1
CELERY_BROKER_URL: ${CELERY_BROKER_URL:-}
CELERY_RESULT_BACKEND: ${CELERY_RESULT_BACKEND:-}
DB_POOL_MIN: ${WORKER_DB_POOL_MIN:-2}
DB_POOL_MAX: ${WORKER_DB_POOL_MAX:-12}
DB_POOL_ACQUIRE_TIMEOUT: ${DB_POOL_ACQUIRE_TIMEOUT:-10}
DB_POOL_HEALTH_CHECK: ${DB_POOL_HEALTH_CHECK:-true}
SKIP_AUTO_MIGRATE: "true"
ALLOW_LOCAL_DESKTOP_BROKERS: ${ALLOW_LOCAL_DESKTOP_BROKERS:-true}
MARKET_CATALOG_AUTO_SYNC: ${MARKET_CATALOG_AUTO_SYNC:-true}
MARKET_CATALOG_SYNC_INTERVAL_SEC: ${MARKET_CATALOG_SYNC_INTERVAL_SEC:-86400}
services:
# ========================
# PostgreSQL Database
# ========================
postgres:
image: ${POSTGRES_IMAGE:-${IMAGE_PREFIX:-}postgres:18.3-alpine}
container_name: quantdinger-db
restart: unless-stopped
environment:
POSTGRES_DB: ${POSTGRES_DB:-quantdinger}
POSTGRES_USER: ${POSTGRES_USER:-quantdinger}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-quantdinger123}
PGDATA: ${POSTGRES_PGDATA:-/var/lib/postgresql/18/docker}
TZ: ${TZ:-Asia/Shanghai}
# Raise PostgreSQL's max_connections so the backend pool (default
# DB_POOL_MAX=50) plus psql/admin connections never exceed PG's own
# limit. PG default is 100; 150 gives headroom for future scaling.
command:
- "postgres"
- "-c"
- "max_connections=${PG_MAX_CONNECTIONS:-150}"
- "-c"
- "shared_buffers=${PG_SHARED_BUFFERS:-256MB}"
volumes:
- ${POSTGRES_DATA_SOURCE:-postgres_data}:${POSTGRES_PGDATA:-/var/lib/postgresql/18/docker}
- ./backend_api_python/migrations/init.sql:/docker-entrypoint-initdb.d/01-init.sql
ports:
- "${DB_PORT:-127.0.0.1:5432}:5432"
networks:
- quantdinger-network
healthcheck:
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-quantdinger} -d ${POSTGRES_DB:-quantdinger}"]
interval: 10s
timeout: 5s
retries: 5
# ========================
# Redis (optional cache layer)
# ========================
redis:
image: ${REDIS_IMAGE:-${IMAGE_PREFIX:-}redis:8-alpine}
container_name: quantdinger-redis
restart: unless-stopped
environment:
REDIS_PASSWORD: ${REDIS_PASSWORD:-}
command:
- sh
- -ec
- |
if [ -n "$$REDIS_PASSWORD" ]; then set -- --requirepass "$$REDIS_PASSWORD"; fi
exec redis-server --maxmemory "${REDIS_CACHE_MAXMEMORY:-128mb}" --maxmemory-policy allkeys-lru "$$@"
ports:
- "${REDIS_PORT:-127.0.0.1:6379}:6379"
networks:
- quantdinger-network
healthcheck:
test: ["CMD-SHELL", "if [ -n \"$$REDIS_PASSWORD\" ]; then redis-cli --no-auth-warning -a \"$$REDIS_PASSWORD\" ping; else redis-cli ping; fi"]
interval: 10s
timeout: 5s
retries: 5
redis-jobs:
image: ${REDIS_IMAGE:-${IMAGE_PREFIX:-}redis:8-alpine}
container_name: quantdinger-redis-jobs
restart: unless-stopped
environment:
REDIS_PASSWORD: ${CELERY_REDIS_PASSWORD:-}
command:
- sh
- -ec
- |
if [ -n "$$REDIS_PASSWORD" ]; then set -- --requirepass "$$REDIS_PASSWORD"; fi
exec redis-server --appendonly yes --appendfsync everysec --save 60 1000 --maxmemory "${REDIS_JOBS_MAXMEMORY:-512mb}" --maxmemory-policy noeviction "$$@"
volumes:
- celery_redis_data:/data
networks:
- quantdinger-network
healthcheck:
test: ["CMD-SHELL", "if [ -n \"$$REDIS_PASSWORD\" ]; then redis-cli --no-auth-warning -a \"$$REDIS_PASSWORD\" ping; else redis-cli ping; fi"]
interval: 10s
timeout: 5s
retries: 5
migration:
<<: *backend-runtime
build: *backend-build
image: ${BACKEND_LOCAL_IMAGE:-quantdinger-backend:local}
container_name: quantdinger-migration
restart: "no"
command: ["python", "-m", "app.commands.migrate"]
depends_on:
postgres:
condition: service_healthy
volumes:
- backend_logs:/app/logs
- backend_data:/app/data
- ./backend_api_python/.env:/app/.env
environment:
DATABASE_URL: postgresql://${POSTGRES_USER:-quantdinger}:${POSTGRES_PASSWORD:-quantdinger123}@postgres:5432/${POSTGRES_DB:-quantdinger}
DB_TYPE: postgresql
DB_POOL_MIN: 1
DB_POOL_MAX: 2
networks:
- quantdinger-network
# ========================
# Backend API (Python/Flask)
# ========================
backend:
<<: *backend-runtime
build: *backend-build
image: ${BACKEND_LOCAL_IMAGE:-quantdinger-backend:local}
container_name: quantdinger-backend
restart: unless-stopped
ulimits:
nofile:
soft: 65535
hard: 65535
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
redis-jobs:
condition: service_healthy
migration:
condition: service_completed_successfully
ports:
- "${BACKEND_PORT:-127.0.0.1:5000}:5000"
volumes:
- backend_logs:/app/logs
- backend_data:/app/data
# Mount .env for runtime config and admin-panel updates
- ./backend_api_python/.env:/app/.env
environment:
- PYTHON_API_HOST=0.0.0.0
- PYTHON_API_PORT=5000
- GIT_TAG=${GIT_TAG:-${IMAGE_TAG:-}}
- TZ=${TZ:-Asia/Shanghai}
- DATABASE_URL=postgresql://${POSTGRES_USER:-quantdinger}:${POSTGRES_PASSWORD:-quantdinger123}@postgres:5432/${POSTGRES_DB:-quantdinger}
- DB_TYPE=postgresql
- REDIS_HOST=redis
- REDIS_PORT=6379
- REDIS_PASSWORD=${REDIS_PASSWORD:-}
- REDIS_CACHE_NAMESPACE=${REDIS_CACHE_NAMESPACE:-quantdinger:cache:v1}
- CACHE_ENABLED=true
- QD_PROCESS_ROLE=api
- LOG_FORMAT=${LOG_FORMAT:-json}
- PROMETHEUS_MULTIPROC_DIR=/tmp/quantdinger-prometheus
- STRATEGY_COMMANDS_ENABLED=true
- CELERY_TASKS_ENABLED=true
- CELERY_REDIS_HOST=redis-jobs
- CELERY_REDIS_PORT=6379
- CELERY_REDIS_PASSWORD=${CELERY_REDIS_PASSWORD:-}
- CELERY_BROKER_DB=0
- CELERY_RESULT_DB=1
- CELERY_BROKER_URL=${CELERY_BROKER_URL:-}
- CELERY_RESULT_BACKEND=${CELERY_RESULT_BACKEND:-}
- SKIP_AUTO_MIGRATE=true
# Database connection pool tuning (see app/utils/db_postgres.py).
# Defaults are safe for ~50 concurrent DB users; raise if you run many
# bots or see `connection pool exhausted` errors.
- DB_POOL_MIN=${DB_POOL_MIN:-2}
- DB_POOL_MAX=${DB_POOL_MAX:-12}
- DB_POOL_ACQUIRE_TIMEOUT=${DB_POOL_ACQUIRE_TIMEOUT:-10}
- DB_POOL_HEALTH_CHECK=${DB_POOL_HEALTH_CHECK:-true}
# Route-level executor tuning (each worker may use one DB connection).
- MARKET_EXECUTOR_WORKERS=${MARKET_EXECUTOR_WORKERS:-6}
- MARKET_CATALOG_AUTO_SYNC=${MARKET_CATALOG_AUTO_SYNC:-true}
- PORTFOLIO_EXECUTOR_WORKERS=${PORTFOLIO_EXECUTOR_WORKERS:-3}
- RESOURCE_FD_COOLDOWN_SEC=${RESOURCE_FD_COOLDOWN_SEC:-180}
- PORTFOLIO_MONITOR_DUE_BATCH_LIMIT=${PORTFOLIO_MONITOR_DUE_BATCH_LIMIT:-5}
- GUNICORN_WORKERS=${GUNICORN_WORKERS:-2}
- GUNICORN_THREADS=${GUNICORN_THREADS:-4}
# IBKR needs local TWS or IB Gateway; set false on SaaS cloud (see env.example).
- ALLOW_LOCAL_DESKTOP_BROKERS=${ALLOW_LOCAL_DESKTOP_BROKERS:-true}
# Spot full close / open fee buffer (Admin → Settings → Live Trading, or backend_api_python/.env)
- SPOT_CLOSE_SAFETY_RATIO=${SPOT_CLOSE_SAFETY_RATIO:-0.998}
- SPOT_OPEN_QUOTE_BUFFER=${SPOT_OPEN_QUOTE_BUFFER:-0.995}
# Takes precedence over mounted .env (run.py load_dotenv override=False).
# Include :8000 when using Vite dev server alongside this stack.
- FRONTEND_URL=${FRONTEND_URL:-http://localhost:8888,http://localhost:8889,http://localhost:8000}
networks:
- quantdinger-network
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5000/api/health"]
interval: 30s
timeout: 10s
retries: 3
trading-worker:
<<: *backend-runtime
build: *backend-build
image: ${BACKEND_LOCAL_IMAGE:-quantdinger-backend:local}
container_name: quantdinger-trading-worker
restart: unless-stopped
command: ["python", "-m", "app.commands.trading_worker"]
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
migration:
condition: service_completed_successfully
volumes:
- backend_logs:/app/logs
- backend_data:/app/data
- ./backend_api_python/.env:/app/.env
environment:
<<: *worker-environment
QD_PROCESS_ROLE: trading
STRATEGY_COMMANDS_ENABLED: "false"
networks:
- quantdinger-network
healthcheck:
test: ["CMD", "python", "-m", "app.commands.worker_health", "trading"]
interval: 15s
timeout: 5s
retries: 3
start_period: 30s
scheduler-worker:
<<: *backend-runtime
build: *backend-build
image: ${BACKEND_LOCAL_IMAGE:-quantdinger-backend:local}
container_name: quantdinger-scheduler-worker
restart: unless-stopped
command: ["python", "-m", "app.commands.scheduler"]
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
migration:
condition: service_completed_successfully
volumes:
- backend_logs:/app/logs
- backend_data:/app/data
- ./backend_api_python/.env:/app/.env
environment:
<<: *worker-environment
QD_PROCESS_ROLE: scheduler
networks:
- quantdinger-network
healthcheck:
test: ["CMD", "python", "-m", "app.commands.worker_health", "scheduler"]
interval: 15s
timeout: 5s
retries: 3
start_period: 30s
celery-worker:
<<: *backend-runtime
build: *backend-build
image: ${BACKEND_LOCAL_IMAGE:-quantdinger-backend:local}
container_name: quantdinger-celery-worker
restart: unless-stopped
command: ["celery", "-A", "app.celery_app:celery_app", "worker", "--loglevel=INFO", "-Q", "jobs,ai,maintenance", "--concurrency=${CELERY_CONCURRENCY:-2}"]
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
redis-jobs:
condition: service_healthy
migration:
condition: service_completed_successfully
volumes:
- backend_logs:/app/logs
- backend_data:/app/data
- ./backend_api_python/.env:/app/.env
environment:
<<: *worker-environment
QD_PROCESS_ROLE: celery
networks:
- quantdinger-network
healthcheck:
test: ["CMD", "python", "-m", "app.commands.worker_health", "celery"]
interval: 15s
timeout: 5s
retries: 3
start_period: 45s
celery-beat:
<<: *backend-runtime
build: *backend-build
image: ${BACKEND_LOCAL_IMAGE:-quantdinger-backend:local}
container_name: quantdinger-celery-beat
restart: unless-stopped
command: ["celery", "-A", "app.celery_app:celery_app", "beat", "--loglevel=INFO", "--schedule=/app/data/celerybeat-schedule"]
depends_on:
postgres:
condition: service_healthy
redis-jobs:
condition: service_healthy
migration:
condition: service_completed_successfully
volumes:
- backend_logs:/app/logs
- backend_data:/app/data
- ./backend_api_python/.env:/app/.env
environment:
<<: *worker-environment
QD_PROCESS_ROLE: celery
networks:
- quantdinger-network
healthcheck:
test: ["CMD-SHELL", "kill -0 1"]
interval: 30s
timeout: 5s
retries: 3
# ========================
# Frontend (Nginx serving prebuilt SPA)
# ========================
# Default behaviour: pull the prebuilt multi-arch image from GHCR.
# Local iteration: clone QuantDinger-Vue into `./QuantDinger-Vue/`
# (gitignored) and layer the build override on top:
# docker compose -f docker-compose.yml -f docker-compose.build.yml up --build
# The `build:` block lives in docker-compose.build.yml so users who only
# pull never need the `./QuantDinger-Vue/` directory to exist (Compose
# validates build context paths eagerly when `build:` is present).
frontend:
# Tag resolution (highest precedence wins):
# FRONTEND_TAG — per-side override, decouples FE from BE
# IMAGE_TAG — unified knob, sets both FE and BE (BE only relevant in ghcr.yml)
# latest — fallback; pin semver in project-root .env (e.g. IMAGE_TAG=5.0.1)
image: ${FRONTEND_IMAGE:-ghcr.io/openbyteinc/quantdinger-frontend}:${FRONTEND_TAG:-${IMAGE_TAG:-latest}}
pull_policy: always
container_name: quantdinger-frontend
restart: unless-stopped
ports:
- "${FRONTEND_HOST:-127.0.0.1}:${FRONTEND_PORT:-8888}:80"
environment:
# nginx envsubst will inject this into the proxy_pass directive at start.
# Override with the backend's reachable URL when deploying outside compose
# (e.g. Railway: http://${{Backend.RAILWAY_PRIVATE_DOMAIN}}:5000).
- BACKEND_URL=${BACKEND_URL:-http://backend:5000}
depends_on:
- backend
networks:
- quantdinger-network
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost/health"]
interval: 30s
timeout: 10s
retries: 3
# ========================
# Mobile H5 (Nginx serving prebuilt mobile SPA)
# ========================
# Open http://localhost:8889 for the touch-first mobile web client.
# It proxies /api to the same backend service, so users do not need to
# manually configure a server URL for the one-click Docker stack.
mobile:
image: ${MOBILE_IMAGE:-ghcr.io/openbyteinc/quantdinger-mobile}:${MOBILE_TAG:-${IMAGE_TAG:-latest}}
pull_policy: always
container_name: quantdinger-mobile
restart: unless-stopped
ports:
- "${MOBILE_HOST:-127.0.0.1}:${MOBILE_PORT:-8889}:80"
environment:
- BACKEND_URL=${BACKEND_URL:-http://backend:5000}
depends_on:
- backend
networks:
- quantdinger-network
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost/health"]
interval: 30s
timeout: 10s
retries: 3
volumes:
postgres_data:
driver: local
backend_logs:
driver: local
backend_data:
driver: local
celery_redis_data:
driver: local
networks:
quantdinger-network:
driver: bridge