Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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 :: how to uninstall npm package 
Shell :: show ip addr linux 
Shell :: there are insecure directories /usr/local/share/zsh 
Shell :: install.packages( tidyverse ) not working 
Shell :: install app in kali linux 
Shell :: see what groups a user is in linux 
Shell :: ionic change app icon 
Shell :: how to remove git commit history 
Shell :: install ssl certificate ubuntu nginx 
Shell :: install android sdk via terminal 
Shell :: command to add a user to a group 
Shell :: bash get package dependencies 
Shell :: apt package info 
Shell :: push existing repository 
Shell :: strapi run command 
Shell :: find command in linux 
Shell :: restart odoo service ubuntu 
Shell :: sshd: no hostkeys available -- exiting. 
Shell :: tensorflow docker hub 
Shell :: Install Software GUI GNOME for Kali Linux 2022.1 
Shell :: how to ssh in termux 
Shell :: mac see current path7 
Shell :: batch color escape character 
Shell :: Creating a directory or folder in linux 
Shell :: unzip file to folder 
Shell :: powershell convert to json 
Shell :: delete command in linux 
Shell :: raspberry clear cache 
Shell :: change mac address linux 
Shell :: Unsupported upgrade request. 
ADD CONTENT
Topic
Content
Source link
Name
3+5 =