Files
dokku/docs/getting-started/uninstalling.md

48 lines
975 B
Markdown
Raw Normal View History

# Uninstalling
While we hate to see you go, if you need to uninstall Dokku, the following may help you out:
## Arch Uninstallation
```shell
# purge dokku from your system
2020-06-18 08:34:24 +01:00
yay -Rsn dokku
```
## Debian Uninstallation
```shell
# purge dokku from your system
apt-get purge dokku herokuish
# remove any dependencies that are no longer necessary
apt-get autoremove
```
## Makefile Uninstallation
This is a manual deletion process, and as it is not a recommended installation method, there is currently no automated uninstallation.
All service plugins should be unlinked from applications, stopped, and destroyed.
All applications should be stopped, and all docker containers and images deleted:
```shell
# stop all applications
dokku ps:stop --all
# cleanup containers and images
dokku cleanup
```
The following user/group must be deleted:
- user: `dokku`
- group: `dokku`
The following directories must be deleted:
- `~dokku`
- `/var/lib/dokku`
- `/var/log/dokku`