18 lines
392 B
Bash
Executable file
18 lines
392 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if test $(basename $PWD ) != "docker"
|
|
then
|
|
echo "Run this from the docker directory" 1>&2
|
|
exit 1
|
|
fi
|
|
|
|
read -p "Stop and remove all containers, volumes and images for this project? [y/N] " -n 1 -r
|
|
echo
|
|
if [[ $REPLY =~ ^[Yy]$ ]]
|
|
then
|
|
cd ..
|
|
echo "Shutting down any instance still running and purge images..."
|
|
docker compose down -v --rmi all
|
|
echo "Done!"
|
|
fi
|