Bash alias for removing docker images does not use force flag
Bash alias for removing docker images does not use force flag Currently I have an alias to force remove images, the command is something like: docker rmi $(docker images | grep pattern | grep -v other_pattern | tr -s ‘ ‘ | cut -d ‘ ‘ -f 3) -f Within my ~/.bashrc it looks like: …