fix 文档管理模块 & 法规对话模块

This commit is contained in:
2026-05-20 23:34:08 +08:00
parent c22b03dc07
commit b065d55c86
39 changed files with 1671 additions and 540 deletions

View File

@@ -58,7 +58,7 @@ services:
retries: 5
restart: unless-stopped
# PostgreSQL数据库 (可选)
# PostgreSQL数据库 (可选,启用 DOCUMENT_REPOSITORY_BACKEND=postgres 时使用)
postgres:
image: postgres:15-alpine
container_name: postgres
@@ -71,7 +71,7 @@ services:
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U compliance"]
test: ["CMD-SHELL", "pg_isready -U compliance -d compliance_db"]
interval: 30s
timeout: 10s
retries: 5