Skip to Content

Uninstalling

Make sure Runtipi is completely stopped and then remove the runtipi directory.

sudo ./runtipi-cli stop cd .. sudo rm -rf runtipi

If you want to purge every Docker image/volume/network created too you can run this command:

docker volume prune docker stop $(docker ps -a -q) docker rm $(docker ps -a -q) docker rmi $(docker images -a -q)
Last updated on