Skip to content
This repository was archived by the owner on Oct 28, 2022. It is now read-only.

Latest commit

 

History

History
8 lines (6 loc) · 196 Bytes

File metadata and controls

8 lines (6 loc) · 196 Bytes

Delete all containers

docker rm $(docker ps -a -q)

Delete all images

docker rmi $(docker images -q)

Delete all volumes

docker volume rm $(docker volume ls -q --filter dangling=true)