Files
container-stack/commands/DELETE.sh
2026-02-03 22:20:03 -03:00

21 lines
299 B
Bash
Executable File

#! /bin/bash
echo "⚠️ WARNING: This will permanently delete data."
select choice in "Abort" "Continue"; do
case "$choice" in
"Abort")
echo "Aborted."
exit 1
;;
"Continue")
break
;;
esac
done
podman container stop --all
podman system prune --all
sudo rm -rdf /storage/flatnote