Files
novalon-website/docker-compose.yml
T
张翔 6403489954 refactor: 完成静态网站转换,移除所有 CMS 和动态功能
- 删除数据库相关代码 (src/db/)
- 删除 API 路由 (src/app/api/)
- 删除认证相关代码 (src/lib/auth/, src/providers/)
- 删除监控和安全中间件 (src/lib/security/, src/lib/monitoring/)
- 删除 hooks (use-news, use-products, use-services)
- 更新组件为静态数据源
- 添加 nginx 静态配置和部署脚本
- 添加 static-link 组件
2026-04-21 07:53:56 +08:00

14 lines
285 B
YAML

version: "3.8"
services:
novalon-website:
image: novalon-website:1.0.0
container_name: novalon-website
restart: unless-stopped
ports:
- "80:80"
- "443:443"
volumes:
- ./nginx-static.conf:/etc/nginx/nginx.conf:ro
- ./ssl:/etc/nginx/ssl:ro