Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 364 Bytes

delete-unused-containers.md

File metadata and controls

13 lines (8 loc) · 364 Bytes

Delete Unused Containers

Category: Docker

Running the docker ps -a might show stopped containers or dangling images which are using disk space.

These can be safely deleted by running the following command:

docker system prune

The output from this command will be a list of deleted containers and the total amount of reclaimed disk space.