@@ -2,7 +2,9 @@ install:
@docker-compose up -d
remove:
- @docker-compose down -v
+ @chmod +x confirm_remove.sh
+ @./confirm_remove.sh
+
start:
@docker-compose start
@@ -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