Uninstall
Back up first
Section titled “Back up first”Before uninstalling, save:
/opt/pier/data/pier.db— the SQLite database./opt/pier/.env— the encryption key (PIER_SECRET). Without it, the database cannot be decrypted./opt/pier/data/backups/— any automated backups.
Remove Pier
Section titled “Remove Pier”sudo systemctl stop piersudo systemctl disable piersudo rm /etc/systemd/system/pier.servicesudo rm -rf /opt/piersudo systemctl daemon-reloadClean up containers
Section titled “Clean up containers”Pier does not remove the Docker containers it created. If you want to wipe everything:
docker ps -a --filter "label=pier.service" --format "{{.Names}}" | xargs -r docker rm -fdocker volume ls --filter "label=pier.service" --format "{{.Name}}" | xargs -r docker volume rmdocker network rm pier-net