From e4f27b31346cc0f4bdc6e1856cce79f93e6d9e42 Mon Sep 17 00:00:00 2001 From: hailin Date: Wed, 24 Dec 2025 23:46:12 -0800 Subject: [PATCH] =?UTF-8?q?fix(docker):=20=E6=B7=BB=E5=8A=A0=E9=98=BF?= =?UTF-8?q?=E9=87=8C=E4=BA=91KYC=E7=8E=AF=E5=A2=83=E5=8F=98=E9=87=8F?= =?UTF-8?q?=E5=88=B0docker-compose?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在identity-service中添加: - ALIYUN_KYC_ENABLED - ALIYUN_KYC_ENDPOINT - ALIYUN_KYC_SCENE_ID 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- backend/services/docker-compose.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/backend/services/docker-compose.yml b/backend/services/docker-compose.yml index ada6d021..8083fd12 100644 --- a/backend/services/docker-compose.yml +++ b/backend/services/docker-compose.yml @@ -159,6 +159,10 @@ services: - ALIYUN_SMS_TEMPLATE_CODE=${ALIYUN_SMS_TEMPLATE_CODE} - ALIYUN_SMS_ENDPOINT=${ALIYUN_SMS_ENDPOINT:-dysmsapi.aliyuncs.com} - SMS_ENABLED=${SMS_ENABLED:-false} + # Aliyun KYC Service (阿里云实人认证) + - ALIYUN_KYC_ENABLED=${ALIYUN_KYC_ENABLED:-false} + - ALIYUN_KYC_ENDPOINT=${ALIYUN_KYC_ENDPOINT:-cloudauth.aliyuncs.com} + - ALIYUN_KYC_SCENE_ID=${ALIYUN_KYC_SCENE_ID:-} depends_on: postgres: condition: service_healthy