引入新的 logo-title 资源并替换登录页与首页左上角标题展示,统一相关样式细节;同时补充 Docker 与 Gitea 部署配置,便于服务器端自动化构建发布。 Made-with: Cursor
13 lines
218 B
YAML
13 lines
218 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
chat-one-web:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: chat-one-web:latest
|
|
container_name: chat-one-web
|
|
restart: unless-stopped
|
|
ports:
|
|
- "80:80"
|