aufs diff folder full docker

By August 26, 2017Linux

This will clean the mess up.

[raw] sudo docker system prune -af
[/raw]

But sometimes that’s not enough.  The following will nuke all your images and reclaim your space.

[raw]

sudo service docker stop
sudo rm -rf /var/lib/docker
sudo service docker start

[/raw]

Leave a Reply