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 :: react-helmet typescript 
Shell :: pip installer for mac 
Shell :: restart nginx in mac 
Shell :: get user password linux 
Shell :: https host ngrok 
Shell :: code . zsh command not found wsl 
Shell :: for loop in shell script 
Shell :: how to get the size of a file in linux 
Shell :: install protonvpn on linux mint 
Shell :: composer installed versions 
Shell :: wget typo3 9 
Shell :: find show system info linux 
Shell :: centos 7 install ifconfig 
Shell :: powershell append to file 
Shell :: upgrade notebook 
Shell :: openbullet 2 kali linux 
Shell :: permission denied while installing npm 
Shell :: how to remove a file from commit 
Shell :: How to restart a service with systemctl command 
Shell :: find postgres data directory and installation path 
Shell :: linux shell script print environment variables 
Shell :: vs code list all extensions 
Shell :: Fix the upstream dependency conflict, or retry 
Shell :: grepper brazil 
Shell :: vncviewer display 0 
Shell :: unexpected MongoDBDriverExceptionConnectionException thrown from a caster: Server reports wire version 5, but this version of libmongoc requires at least 6 (MongoDB 3.6)", 
Shell :: check full memory details 
Shell :: grep tail 
Shell :: create a batch file to create a text file with multiple line input 
Shell :: gcsfuse allow_other 
ADD CONTENT
Topic
Content
Source link
Name
5+6 =