Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

docker centos no space left on device

docker system prune --all --force --volumes
Comment

docker no space left on device

$ docker volume ls -qf dangling=true
Comment

docker no space left on device

$ docker volume rm $(docker volume ls -qf dangling=true)
Comment

Docker No space left on device

#Possibly that you have alot of dangling volumes (like my case)
#View dangling volumes:
docker volume ls -qf dangling=true

#Remove dangling volumes:
$ docker volume rm $(docker volume ls -qf dangling=true)

#List all volumes:
docker volume ls

#OR simply clean everything dangling including volumes :
docker system prune --volumes
Comment

docker no space left on device

docker rmi $(docker images | grep '^<none>' | awk '{print $3}')
Comment

PREVIOUS NEXT
Code Example
Shell :: vscode give music permissions 
Shell :: skript execute console command 
Shell :: Warning: os-prober will not be executed to detect other bootable partitions. Systems on them will not be added to the GRUB boot configuration. 
Shell :: install workbench on ubuntu 
Shell :: installing pip in ubuntu 
Shell :: npm install redux thunk 
Shell :: install postman in linux 
Shell :: error: you need to resolve your current index first git 
Shell :: commit no verify 
Shell :: how to install and enable docker on command line with EC2 instance 
Shell :: change bash to zsh 
Shell :: apt see installed packages 
Shell :: install angular 9.1.7 
Shell :: git cannot spawn gpg no such file or directory 
Shell :: "python -m venv venv" 
Shell :: install Qt5 ubuntu 20.04 
Shell :: how change remote origin git 
Shell :: sudo: /etc/sudoers is owned by uid 1001, should be 0 sudo: no valid sudoers sources found, quitting 
Shell :: heroku download database 
Shell :: install audacity linux 
Shell :: unix:///var/run/supervisor.sock no such file 
Shell :: linux remove java 11 
Shell :: bash check parameter is set 
Shell :: Error: Node Sass does not yet support your current environment 
Shell :: see my dns server linux 
Shell :: flutter download all dependencies 
Shell :: kill all gazebo processes 
Shell :: git get repository url 
Shell :: uninstall qgis ubuntu 20.04 
Shell :: change git account terminal 
ADD CONTENT
Topic
Content
Source link
Name
4+5 =