mirror of
https://github.com/Dokploy/website.git
synced 2026-07-08 23:45:25 +02:00
feat: migration to fumadocs 14
This commit is contained in:
39
apps/docs-v2/content/docs/core/uninstall.mdx
Normal file
39
apps/docs-v2/content/docs/core/uninstall.mdx
Normal file
@@ -0,0 +1,39 @@
|
||||
---
|
||||
title: Uninstall
|
||||
description: "Learn how to uninstall Dokploy on your server"
|
||||
---
|
||||
|
||||
import { Step, Steps } from 'fumadocs-ui/components/steps';
|
||||
|
||||
Follow these steps to completely remove Dokploy and its components from your server.
|
||||
|
||||
<Steps>
|
||||
<Step>
|
||||
Remove the docker swarm services created by Dokploy:
|
||||
|
||||
```bash
|
||||
docker service rm dokploy dokploy-traefik dokploy-postgres dokploy-redis
|
||||
```
|
||||
|
||||
</Step>
|
||||
|
||||
<Step>
|
||||
|
||||
Remove the docker volumes created by Dokploy:
|
||||
|
||||
```bash
|
||||
docker volume rm -f dokploy-postgres-database redis-data-volume
|
||||
```
|
||||
|
||||
</Step>
|
||||
|
||||
<Step>
|
||||
|
||||
Remove the dokploy files and directories from your server:
|
||||
|
||||
```bash
|
||||
sudo rm -rf /etc/dokploy
|
||||
```
|
||||
|
||||
</Step>
|
||||
</Steps>
|
||||
Reference in New Issue
Block a user