feat: migration to fumadocs 14

This commit is contained in:
Mauricio Siu
2024-11-09 21:15:20 -06:00
parent 0dd0161f1e
commit 8267c4a7b6
229 changed files with 22179 additions and 2109 deletions

View File

@@ -0,0 +1,32 @@
---
title: "卸载"
description: "了解如何在服务器上卸载 Dokploy"
---
## 卸载步骤
按照以下步骤从您的服务器中完全删除 Dokploy 及其组件。
### 第 1 步: 删除 Docker Swarm 服务
首先,删除 Docker Swarm 中的 Dokploy 以及相关服务:
```bash
docker service rm dokploy dokploy-traefik dokploy-postgres dokploy-redis
```
### 第 2 步: 删除 Docker 挂载卷
接下来,删除 Dokploy 创建的 Docker 卷:
```bash
docker volume rm -f dokploy-postgres-database redis-data-volume
```
### 第 3 步: 删除 Dokploy 文件
最后,从服务器上删除 Dokploy 文件和目录:
```bash
sudo rm -rf /etc/dokploy
```