Uninstallation
Docker
Section titled “Docker”Stop and remove all containers, volumes, and images:
cd plankdocker compose -f docker/docker-compose.yml down -v --rmi allThen delete the project folder:
rm -rf plankBare Metal
Section titled “Bare Metal”Stop the Plank process, then remove the project folder:
rm -rf plankIf you installed Plank as a systemd service (via the deploy script), disable and remove it first:
sudo systemctl stop planksudo systemctl disable planksudo rm /etc/systemd/system/plank.servicesudo systemctl daemon-reloadrm -rf plankCleaning Up Data
Section titled “Cleaning Up Data”Downloaded media is stored in the data/ directory (or wherever DATA_PATH points). The database is at plank.db (or wherever DATABASE_URL points). Both are inside the project folder by default, so removing the folder removes everything.
If you changed DATA_PATH or DATABASE_URL to point elsewhere, remove those locations manually.