Horje
docker image rm image without tag Code Example
docker remove images without tag
docker rmi $(docker images --filter "dangling=true" -q --no-trunc)
docker delete images without tag
docker rmi $(docker images -a|grep "<none>"|awk '$1=="<none>" {print $3}')
docker image rm image without tag
docker image prune
Source: linuxize.com
docker remove image by tag
 docker rmi $(docker images --filter=reference="*:stuff_*" -q)




Shell

Related
git switch branch Code Example git switch branch Code Example
undo most recent commit Code Example undo most recent commit Code Example
Bash colour codes Code Example Bash colour codes Code Example
kill process unix Code Example kill process unix Code Example
find and kill process Code Example find and kill process Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11