Summary: - PostgreSQL database migration to RDS completed (90MB SQL, 11 schemas) - Frontend Nginx Docker image built and pushed to ACR (v1.0, ~50MB) - Python microservice Docker image built and pushed to ACR (v1.0, 1.12GB) - Created 3 deployment documentation files Docker Configuration Files: - frontend-v2/Dockerfile: Multi-stage build with nginx:alpine - frontend-v2/.dockerignore: Optimize build context - frontend-v2/nginx.conf: SPA routing and API proxy - frontend-v2/docker-entrypoint.sh: Dynamic env injection - extraction_service/Dockerfile: Multi-stage build with Aliyun Debian mirror - extraction_service/.dockerignore: Optimize build context - extraction_service/requirements-prod.txt: Production dependencies (removed Nougat) Deployment Documentation: - docs/05-部署文档/00-部署进度总览.md: One-stop deployment status overview - docs/05-部署文档/07-前端Nginx-SAE部署操作手册.md: Frontend deployment guide - docs/05-部署文档/08-PostgreSQL数据库部署操作手册.md: Database deployment guide - docs/00-系统总体设计/00-系统当前状态与开发指南.md: Updated with deployment status Database Migration: - RDS instance: pgm-2zex1m2y3r23hdn5 (2C4G, PostgreSQL 15.0) - Database: ai_clinical_research - Schemas: 11 business schemas migrated successfully - Data: 3 users, 2 projects, 1204 literatures verified - Backup: rds_init_20251224_154529.sql (90MB) Docker Images: - Frontend: crpi-cd5ij4pjt65mweeo.cn-beijing.personal.cr.aliyuncs.com/ai-clinical/ai-clinical_frontend-nginx:v1.0 - Python: crpi-cd5ij4pjt65mweeo.cn-beijing.personal.cr.aliyuncs.com/ai-clinical/python-extraction:v1.0 Key Achievements: - Resolved Docker Hub network issues (using generic tags) - Fixed 30 TypeScript compilation errors - Removed Nougat OCR to reduce image size by 1.5GB - Used Aliyun Debian mirror to resolve apt-get network issues - Implemented multi-stage builds for optimization Next Steps: - Deploy Python microservice to SAE - Build Node.js backend Docker image - Deploy Node.js backend to SAE - Deploy frontend Nginx to SAE - End-to-end verification testing Status: Docker images ready, SAE deployment pending
148 lines
4.1 KiB
PowerShell
148 lines
4.1 KiB
PowerShell
# ===================================================================
|
||
# AI临床研究平台 - SAE部署自动化脚本
|
||
# ===================================================================
|
||
# 用途:自动构建Docker镜像并推送到阿里云容器镜像服务
|
||
# 使用方法:.\deploy-to-sae.ps1 -Version "v1.0.0"
|
||
# 作者:技术架构师
|
||
# 日期:2025-12-11
|
||
# ===================================================================
|
||
|
||
param(
|
||
[Parameter(Mandatory=$true)]
|
||
[string]$Version,
|
||
|
||
[Parameter(Mandatory=$false)]
|
||
[string]$Registry = "registry.cn-hangzhou.aliyuncs.com",
|
||
|
||
[Parameter(Mandatory=$false)]
|
||
[string]$Namespace = "aiclinical",
|
||
|
||
[Parameter(Mandatory=$false)]
|
||
[string]$Repository = "backend-dev"
|
||
)
|
||
|
||
# 颜色输出函数
|
||
function Write-ColorOutput($ForegroundColor) {
|
||
$fc = $host.UI.RawUI.ForegroundColor
|
||
$host.UI.RawUI.ForegroundColor = $ForegroundColor
|
||
if ($args) {
|
||
Write-Output $args
|
||
}
|
||
$host.UI.RawUI.ForegroundColor = $fc
|
||
}
|
||
|
||
# 标题
|
||
Write-ColorOutput Cyan "================================================"
|
||
Write-ColorOutput Cyan " AI临床研究平台 - SAE部署脚本"
|
||
Write-ColorOutput Cyan "================================================"
|
||
Write-Host ""
|
||
|
||
# 检查Docker是否运行
|
||
Write-ColorOutput Yellow "🔍 检查Docker状态..."
|
||
try {
|
||
docker ps > $null 2>&1
|
||
if ($LASTEXITCODE -ne 0) {
|
||
Write-ColorOutput Red "❌ Docker未运行,请先启动Docker Desktop"
|
||
exit 1
|
||
}
|
||
Write-ColorOutput Green "✅ Docker运行正常"
|
||
} catch {
|
||
Write-ColorOutput Red "❌ Docker未安装或未运行"
|
||
exit 1
|
||
}
|
||
|
||
# 构建镜像
|
||
Write-Host ""
|
||
Write-ColorOutput Yellow "🔨 开始构建Docker镜像..."
|
||
Write-Host "版本: $Version"
|
||
Write-Host "目录: backend/"
|
||
Write-Host ""
|
||
|
||
Set-Location backend
|
||
|
||
$imageName = "aiclinical-backend"
|
||
$fullImageName = "${Registry}/${Namespace}/${Repository}:${Version}"
|
||
|
||
Write-ColorOutput Cyan "执行: docker build -t ${imageName}:${Version} ."
|
||
docker build -t "${imageName}:${Version}" .
|
||
|
||
if ($LASTEXITCODE -ne 0) {
|
||
Write-ColorOutput Red "❌ Docker镜像构建失败"
|
||
exit 1
|
||
}
|
||
|
||
Write-ColorOutput Green "✅ Docker镜像构建成功"
|
||
|
||
# 打标签
|
||
Write-Host ""
|
||
Write-ColorOutput Yellow "🏷️ 为镜像打标签..."
|
||
Write-ColorOutput Cyan "执行: docker tag ${imageName}:${Version} ${fullImageName}"
|
||
docker tag "${imageName}:${Version}" $fullImageName
|
||
|
||
if ($LASTEXITCODE -ne 0) {
|
||
Write-ColorOutput Red "❌ 打标签失败"
|
||
exit 1
|
||
}
|
||
|
||
Write-ColorOutput Green "✅ 标签创建成功"
|
||
|
||
# 推送镜像
|
||
Write-Host ""
|
||
Write-ColorOutput Yellow "📤 推送镜像到阿里云..."
|
||
Write-Host "目标仓库: $fullImageName"
|
||
Write-Host ""
|
||
Write-ColorOutput Cyan "提示:如果提示需要登录,请执行以下命令:"
|
||
Write-ColorOutput Cyan "docker login --username=<你的阿里云账号> ${Registry}"
|
||
Write-Host ""
|
||
|
||
Write-ColorOutput Cyan "执行: docker push ${fullImageName}"
|
||
docker push $fullImageName
|
||
|
||
if ($LASTEXITCODE -ne 0) {
|
||
Write-ColorOutput Red "❌ 镜像推送失败"
|
||
Write-ColorOutput Yellow "请检查:"
|
||
Write-Host " 1. 是否已登录阿里云容器镜像服务"
|
||
Write-Host " 2. 命名空间和仓库名称是否正确"
|
||
Write-Host " 3. 网络连接是否正常"
|
||
exit 1
|
||
}
|
||
|
||
Write-ColorOutput Green "✅ 镜像推送成功"
|
||
|
||
# 完成
|
||
Write-Host ""
|
||
Write-ColorOutput Cyan "================================================"
|
||
Write-ColorOutput Green "🎉 部署准备完成!"
|
||
Write-ColorOutput Cyan "================================================"
|
||
Write-Host ""
|
||
Write-Host "镜像信息:"
|
||
Write-ColorOutput Cyan " 完整地址: $fullImageName"
|
||
Write-ColorOutput Cyan " 版本号: $Version"
|
||
Write-Host ""
|
||
Write-Host "下一步操作:"
|
||
Write-Host " 1. 登录阿里云SAE控制台"
|
||
Write-Host " 2. 进入应用 '${Repository}'"
|
||
Write-Host " 3. 点击'部署应用'"
|
||
Write-Host " 4. 选择镜像版本: $Version"
|
||
Write-Host " 5. 点击'确定'开始部署"
|
||
Write-Host ""
|
||
Write-ColorOutput Cyan "部署文档: docs/05-部署文档/02-SAE部署完全指南(产品经理版).md"
|
||
Write-Host ""
|
||
|
||
Set-Location ..
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|