Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

docker remove images without tag

docker rmi $(docker images --filter "dangling=true" -q --no-trunc)
Comment

docker delete images without tag

docker rmi $(docker images -a|grep "<none>"|awk '$1=="<none>" {print $3}')
Comment

docker remove image by tag

 docker rmi $(docker images --filter=reference="*:stuff_*" -q)
Comment

PREVIOUS NEXT
Code Example
Shell :: ubuntu command to list largest files 
Shell :: rvm set default 
Shell :: naming an stash 
Shell :: (‘08001’, ‘[08001] [Microsoft][ODBC Driver 17 for SQL Server]Client unable to establish connection (0) (SQLDriverConnect)’) 
Shell :: install qwebengineview pyqt5 
Shell :: install tree in linux 
Shell :: git check ssh connection 
Shell :: conda install shapely 
Shell :: python2 pip install kali 
Shell :: find large files linux 
Shell :: adb for ubuntu 
Shell :: rman delete old archivelog 
Shell :: OSError: [Errno 24] inotify instance limit reached 
Shell :: git update submodule 
Shell :: install snap fedora 
Shell :: remove the last commit git without losing changes 
Shell :: install sox in ubuntu 
Shell :: wtforms install 
Shell :: Failed to download metadata for repo ‘AppStream’ 
Shell :: check selinux status 
Shell :: add kernel to jupyter 
Shell :: install wireshark on ubuntu 
Shell :: kubectl change namespace 
Shell :: ubuntu certbot nginx 
Shell :: delete empty files bash 
Shell :: git show remote url 
Shell :: zsh: corrupt history file /home/.zsh_history 
Shell :: find linux version 
Shell :: free up space ubuntu 
Shell :: see git ignored files 
ADD CONTENT
Topic
Content
Source link
Name
5+6 =