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
# Pull backend image
docker pull ghcr.io/perfect-panel/ppanel:latest
docker pull ppanel/ppanel:latest
# Run backend container
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. Initialize Database
@@ -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
```
## Security Recommendations
@@ -449,7 +449,7 @@ server:
```bash
# Pull latest image
docker pull ghcr.io/perfect-panel/ppanel:latest
docker pull ppanel/ppanel:latest
# Stop old container
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
# Execute database migration
docker exec ppanel-backend ./ppanel migrate