7 lines
170 B
Text
7 lines
170 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
echo "Doing docker housekeeping for containers, images and volumes";
|
||
|
|
||
|
yes | docker container prune
|
||
|
yes | docker image prune
|
||
|
yes | docker volume prune
|