Skip to main content

Docker Space Full

Here are some things to check on when the disk on a docker host gets full

sudo docker system prune -a -f

This will cleanup other resource types:

docker system prune -a

This command will remove older logs from the container logs folder:

sudo find /projects/container_logs/ -type f -mtime +7 -name '*.log' -exec rm {} \;