soscmd/soscmd-prune-docker

10 lines
240 B
Text
Raw Permalink Normal View History

2023-06-03 11:28:50 +02:00
#!/bin/bash
2024-03-15 02:20:45 +01:00
echo ":: Pruning docker containers"
docker container prune
echo ":: Pruning docker images"
docker image prune --all
echo ":: Pruning docker networks"
docker network prune
echo ":: Pruning docker build cache"
docker buildx prune