All checks were successful
CI / build (push) Successful in 2m31s
登录页切换为官方 input-group 组合并将全站提示从 antd message 统一为 sonner toast,确保通知位置与风格一致。同时补齐相关 shadcn CLI 生成组件及构建配置更新。 Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
455 B
YAML
18 lines
455 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
|
|
environment:
|
|
# 后端接口地址;如果后端也在 compose 网络中,改成类似 http://chat-one-api:3000
|
|
API_UPSTREAM: http://host.docker.internal:3000
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
ports:
|
|
- "80:80"
|