confirm_remove.sh 251 B

12345678
  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. docker-compose down -v
  6. else
  7. echo "Operation cancelled."
  8. fi