15 lines
311 B
Bash
15 lines
311 B
Bash
#!/bin/bash
|
|
# kill, remove, prune everything Docker-related
|
|
|
|
set -e
|
|
|
|
echo "Killing all containers..."
|
|
docker kill $(docker ps -q) 2>/dev/null || true
|
|
|
|
echo "Removing all containers..."
|
|
docker rm -f $(docker ps -aq) 2>/dev/null || true
|
|
|
|
echo "Pruning system..."
|
|
docker system prune -a -f --volumes
|
|
|
|
echo "Done."
|