refactor: update Docker image references from ghcr.io to ppanel for backend setup in documentation

- Changed Docker pull commands in backend.md and its Chinese counterpart to use ppanel/ppanel:latest instead of ghcr.io/perfect-panel/ppanel:latest.
- Removed obsolete Vue.js and source map files from the cache.
This commit is contained in:
web
2025-12-15 06:56:00 -08:00
parent 227e922958
commit c76a09c9d6
17 changed files with 4818 additions and 24012 deletions
+5 -5
View File
@@ -123,7 +123,7 @@ docker run -d \
```bash
# 拉取后端镜像
docker pull ghcr.io/perfect-panel/ppanel:latest
docker pull ppanel/ppanel:latest
# 运行后端容器
docker run -d \
@@ -132,7 +132,7 @@ docker run -d \
-v $(pwd)/config.yaml:/app/config.yaml \
--link ppanel-mysql:mysql \
--link ppanel-redis:redis \
ghcr.io/perfect-panel/ppanel:latest
ppanel/ppanel:latest
```
#### 6. 初始化数据库
@@ -356,7 +356,7 @@ docker run -d \
-e REDIS_HOST=redis \
--link ppanel-mysql:mysql \
--link ppanel-redis:redis \
ghcr.io/perfect-panel/ppanel:latest
ppanel/ppanel:latest
```
## 安全建议
@@ -449,7 +449,7 @@ server:
```bash
# 拉取最新镜像
docker pull ghcr.io/perfect-panel/ppanel:latest
docker pull ppanel/ppanel:latest
# 停止旧容器
docker stop ppanel-backend
@@ -467,7 +467,7 @@ docker run -d \
-v $(pwd)/config.yaml:/app/config.yaml \
--link ppanel-mysql:mysql \
--link ppanel-redis:redis \
ghcr.io/perfect-panel/ppanel:latest
ppanel/ppanel:latest
# 执行数据库迁移
docker exec ppanel-backend ./ppanel migrate