feat: Added multi-architecture image building and service startup instructions, upgraded Node image and package manager

This commit is contained in:
begoniezhao
2025-08-21 15:09:52 +08:00
parent d801112f5f
commit 4ff3ba6d96
4 changed files with 95 additions and 3 deletions

View File

@@ -116,6 +116,18 @@ cp .env.example .env
make start-all
```
#### ③ 启动服务备选
```bash
# 启动 ollama 服务 (可选)
ollama serve > /dev/null 2>&1 &
# 根据系统架构(amd64 或者 arm64)启动服务
ARCH=amd64 docker compose up -d
# 或
ARCH=arm64 docker compose up -d
```
#### ④ 停止服务
```bash