Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion apps/docs/content/docs/core/uninstall.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,27 @@ Remove the docker network created by Dokploy:
```

</Step>


<Step>

If you were running a Cluster, then for each worker node, remove all it's services and make it leave the swarm:

```bash
docker service rm $(docker service ls -q)
docker system prune -a -f
docker swarm leave
```
</Step>

<Step>

Make the manager node (where Dokploy is installed) leave the swarm (run it on all manager nodes if you had more than one):

```bash
docker swarm leave --force
```
</Step>

<Step>

Docker cleanup to remove leftovers:
Expand Down