github.com/yogeshlonkar/moby@v1.13.2-0.20201203103638-c0b64beaea94/docs/reference/commandline/system_prune.md (about) 1 --- 2 title: "system prune" 3 description: "Remove unused data" 4 keywords: "system, prune, delete, remove" 5 --- 6 7 <!-- This file is maintained within the docker/docker Github 8 repository at https://github.com/docker/docker/. Make all 9 pull requests against that repo. If you see this file in 10 another repository, consider it read-only there, as it will 11 periodically be overwritten by the definitive file. Pull 12 requests which include edits to this file in other repositories 13 will be rejected. 14 --> 15 16 # system prune 17 18 ```markdown 19 Usage: docker system prune [OPTIONS] 20 21 Delete unused data 22 23 Options: 24 -a, --all Remove all unused data not just dangling ones 25 -f, --force Do not prompt for confirmation 26 --help Print usage 27 ``` 28 29 ## Description 30 31 Remove all unused containers, volumes, networks and images (both dangling and unreferenced). 32 33 ## Examples 34 35 ```bash 36 $ docker system prune -a 37 38 WARNING! This will remove: 39 - all stopped containers 40 - all volumes not used by at least one container 41 - all networks not used by at least one container 42 - all images without at least one container associated to them 43 Are you sure you want to continue? [y/N] y 44 Deleted Containers: 45 0998aa37185a1a7036b0e12cf1ac1b6442dcfa30a5c9650a42ed5010046f195b 46 73958bfb884fa81fa4cc6baf61055667e940ea2357b4036acbbe25a60f442a4d 47 48 Deleted Volumes: 49 named-vol 50 51 Deleted Images: 52 untagged: my-curl:latest 53 deleted: sha256:7d88582121f2a29031d92017754d62a0d1a215c97e8f0106c586546e7404447d 54 deleted: sha256:dd14a93d83593d4024152f85d7c63f76aaa4e73e228377ba1d130ef5149f4d8b 55 untagged: alpine:3.3 56 deleted: sha256:695f3d04125db3266d4ab7bbb3c6b23aa4293923e762aa2562c54f49a28f009f 57 untagged: alpine:latest 58 deleted: sha256:ee4603260daafe1a8c2f3b78fd760922918ab2441cbb2853ed5c439e59c52f96 59 deleted: sha256:9007f5987db353ec398a223bc5a135c5a9601798ba20a1abba537ea2f8ac765f 60 deleted: sha256:71fa90c8f04769c9721459d5aa0936db640b92c8c91c9b589b54abd412d120ab 61 deleted: sha256:bb1c3357b3c30ece26e6604aea7d2ec0ace4166ff34c3616701279c22444c0f3 62 untagged: my-jq:latest 63 deleted: sha256:6e66d724542af9bc4c4abf4a909791d7260b6d0110d8e220708b09e4ee1322e1 64 deleted: sha256:07b3fa89d4b17009eb3988dfc592c7d30ab3ba52d2007832dffcf6d40e3eda7f 65 deleted: sha256:3a88a5c81eb5c283e72db2dbc6d65cbfd8e80b6c89bb6e714cfaaa0eed99c548 66 67 Total reclaimed space: 13.5 MB 68 ``` 69 70 ## Related commands 71 72 * [volume create](volume_create.md) 73 * [volume ls](volume_ls.md) 74 * [volume inspect](volume_inspect.md) 75 * [volume rm](volume_rm.md) 76 * [volume prune](volume_prune.md) 77 * [Understand Data Volumes](https://docs.docker.com/engine/tutorials/dockervolumes/) 78 * [system df](system_df.md) 79 * [container prune](container_prune.md) 80 * [image prune](image_prune.md) 81 * [network prune](network_prune.md) 82 * [system prune](system_prune.md)