Failed to write all bytes for _bisect.so

I was restoring MongoDB environment then it failed without disk space. After that I cannot execute docker-compose command, every attempt shows this error message: Failed to write all bytes for _bisect.so

I found some references to free space in / tmp, although I want to be sure this was the best alternative to the solution.

+4


source to share


2 answers


Remove docker images:

docker rmi $(docker images -f dangling=true -q)

      

Also have a look at https://meta.discourse.org/t/docker-diff-very-big-how-to-clean/12696/4

UPDATE:



You can now use prunes

docker system prune -af

      

https://docs.docker.com/engine/reference/commandline/system_prune/

+7


source


check df usually you will find 100% for / var / lib / docker and 100% for / try to free up space, maybe stop syslog service.

Then remove and restart your containers



double check df now / var / lib / docker should be around 15%

+1


source







All Articles