confirm_remove.sh 356 B

12345678910111213
  1. #!/bin/bash
  2. echo "Warning: This will remove all containers and volumes, including persistent data. Do you want to continue? [Y/N]"
  3. read ans
  4. if [ "$ans" == "Y" ] || [ "$ans" == "y" ]; then
  5. command docker-compose 2>/dev/null
  6. if [ "$?" == "0" ]; then
  7. docker-compose down -v
  8. else
  9. docker compose down -v
  10. fi
  11. else
  12. echo "Operation cancelled."
  13. fi