Orphaned Docker mounted host volumes?
For Docker 1.9 and up there’s a native way: List all orphaned volumes with $ docker volume ls -qf dangling=true Eliminate all of them with $ docker volume rm $(docker volume ls -qf dangling=true)
For Docker 1.9 and up there’s a native way: List all orphaned volumes with $ docker volume ls -qf dangling=true Eliminate all of them with $ docker volume rm $(docker volume ls -qf dangling=true)