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