8 lines
180 B
Bash
Executable file
8 lines
180 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "Shutting down any instance still running and purge images..."
|
|
docker-compose down -v --rmi all
|
|
echo "Purging dangling images..."
|
|
docker image prune
|
|
echo "Done!"
|