This commit is contained in:
Baobhan Sith
2025-05-12 08:33:42 +08:00
2 changed files with 8 additions and 9 deletions
+4 -5
View File
@@ -29,7 +29,6 @@
* 审计日志,全面记录用户行为与系统变更 * 审计日志,全面记录用户行为与系统变更
* 基于 Node.js 的轻量级后端,资源占用低 * 基于 Node.js 的轻量级后端,资源占用低
* 内置心跳保活机制,确保连接稳定 * 内置心跳保活机制,确保连接稳定
* 焦点切换器:允许在页面输入组件间切换,支持自定义切换顺序和快捷键
## 📸 截图 ## 📸 截图
@@ -134,19 +133,19 @@ sudo systemctl restart docker
### 2️⃣ 启动服务 ### 2️⃣ 启动服务
```bash ```bash
docker-compose up -d docker compose up -d
``` ```
### 3️⃣ 更新 ### 3️⃣ 更新
注意:docker-compose 运行不需要拉取仓库源码,除非你打算自己build,否则只需要在项目目录执行以下命令即可更新。 注意:docker-compose 运行不需要拉取仓库源码,除非你打算自己build,否则只需要在项目目录执行以下命令即可更新。
```bash ```bash
docker-compose down docker compose down
``` ```
```bash ```bash
docker-compose pull docker compose pull
``` ```
```bash ```bash
docker-compose up -d docker compose up -d
``` ```
## 📚 使用指南 ## 📚 使用指南
+4 -4
View File
@@ -119,19 +119,19 @@ sudo systemctl restart docker
### 2️⃣ Start the Service ### 2️⃣ Start the Service
```bash ```bash
docker-compose up -d docker compose up -d
``` ```
### 3️⃣ Update ### 3️⃣ Update
Note: Running with docker-compose does not require pulling the source code unless you plan to build it yourself. Simply execute the following commands in the project directory to update. Note: Running with docker-compose does not require pulling the source code unless you plan to build it yourself. Simply execute the following commands in the project directory to update.
```bash ```bash
docker-compose down docker compose down
``` ```
```bash ```bash
docker-compose pull docker compose pull
``` ```
```bash ```bash
docker-compose up -d docker compose up -d
``` ```
## 📚 Usage Guide ## 📚 Usage Guide