feat: implemented user confirmation for safe removal of containers and volumes in Makefile

This commit is contained in:
Patrice-Gaudicheau
2024-02-24 09:02:18 +01:00
parent a016171573
commit 0f6bdaa602
2 changed files with 11 additions and 1 deletions

8
confirm_remove.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
echo "Warning: This will remove all containers and volumes, including persistent data. Do you want to continue? [Y/N]"
read ans
if [ "$ans" == "Y" ] || [ "$ans" == "y" ]; then
docker-compose down -v
else
echo "Operation cancelled."
fi