Docker
Cleaning images
#remove dangling images
docker rmi -f $(docker images -f "dangling=true" -q)
#remove containers
docker rm -f $(docker ps -aq)
Last updated
Was this helpful?
#remove dangling images
docker rmi -f $(docker images -f "dangling=true" -q)
#remove containers
docker rm -f $(docker ps -aq)
Last updated
Was this helpful?