github.com/pwn-term/docker@v0.0.0-20210616085119-6e977cce2565/cli/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 # system prune 8 9 ```markdown 10 Usage: docker system prune [OPTIONS] 11 12 Remove unused data 13 14 Options: 15 -a, --all Remove all unused images not just dangling ones 16 --filter filter Provide filter values (e.g. 'label=<key>=<value>') 17 -f, --force Do not prompt for confirmation 18 --help Print usage 19 --volumes Prune volumes 20 ``` 21 22 ## Description 23 24 Remove all unused containers, networks, images (both dangling and unreferenced), 25 and optionally, volumes. 26 27 ## Examples 28 29 ```bash 30 $ docker system prune 31 32 WARNING! This will remove: 33 - all stopped containers 34 - all networks not used by at least one container 35 - all dangling images 36 - all build cache 37 Are you sure you want to continue? [y/N] y 38 39 Deleted Containers: 40 f44f9b81948b3919590d5f79a680d8378f1139b41952e219830a33027c80c867 41 792776e68ac9d75bce4092bc1b5cc17b779bc926ab04f4185aec9bf1c0d4641f 42 43 Deleted Networks: 44 network1 45 network2 46 47 Deleted Images: 48 untagged: hello-world@sha256:f3b3b28a45160805bb16542c9531888519430e9e6d6ffc09d72261b0d26ff74f 49 deleted: sha256:1815c82652c03bfd8644afda26fb184f2ed891d921b20a0703b46768f9755c57 50 deleted: sha256:45761469c965421a92a69cc50e92c01e0cfa94fe026cdd1233445ea00e96289a 51 52 Total reclaimed space: 1.84kB 53 ``` 54 55 By default, volumes are not removed to prevent important data from being 56 deleted if there is currently no container using the volume. Use the `--volumes` 57 flag when running the command to prune volumes as well: 58 59 ```bash 60 $ docker system prune -a --volumes 61 62 WARNING! This will remove: 63 - all stopped containers 64 - all networks not used by at least one container 65 - all volumes not used by at least one container 66 - all images without at least one container associated to them 67 - all build cache 68 Are you sure you want to continue? [y/N] y 69 70 Deleted Containers: 71 0998aa37185a1a7036b0e12cf1ac1b6442dcfa30a5c9650a42ed5010046f195b 72 73958bfb884fa81fa4cc6baf61055667e940ea2357b4036acbbe25a60f442a4d 73 74 Deleted Networks: 75 my-network-a 76 my-network-b 77 78 Deleted Volumes: 79 named-vol 80 81 Deleted Images: 82 untagged: my-curl:latest 83 deleted: sha256:7d88582121f2a29031d92017754d62a0d1a215c97e8f0106c586546e7404447d 84 deleted: sha256:dd14a93d83593d4024152f85d7c63f76aaa4e73e228377ba1d130ef5149f4d8b 85 untagged: alpine:3.3 86 deleted: sha256:695f3d04125db3266d4ab7bbb3c6b23aa4293923e762aa2562c54f49a28f009f 87 untagged: alpine:latest 88 deleted: sha256:ee4603260daafe1a8c2f3b78fd760922918ab2441cbb2853ed5c439e59c52f96 89 deleted: sha256:9007f5987db353ec398a223bc5a135c5a9601798ba20a1abba537ea2f8ac765f 90 deleted: sha256:71fa90c8f04769c9721459d5aa0936db640b92c8c91c9b589b54abd412d120ab 91 deleted: sha256:bb1c3357b3c30ece26e6604aea7d2ec0ace4166ff34c3616701279c22444c0f3 92 untagged: my-jq:latest 93 deleted: sha256:6e66d724542af9bc4c4abf4a909791d7260b6d0110d8e220708b09e4ee1322e1 94 deleted: sha256:07b3fa89d4b17009eb3988dfc592c7d30ab3ba52d2007832dffcf6d40e3eda7f 95 deleted: sha256:3a88a5c81eb5c283e72db2dbc6d65cbfd8e80b6c89bb6e714cfaaa0eed99c548 96 97 Total reclaimed space: 13.5 MB 98 ``` 99 100 ### Filtering 101 102 The filtering flag (`--filter`) format is of "key=value". If there is more 103 than one filter, then pass multiple flags (e.g., `--filter "foo=bar" --filter "bif=baz"`) 104 105 The currently supported filters are: 106 107 * until (`<timestamp>`) - only remove containers, images, and networks created before given timestamp 108 * label (`label=<key>`, `label=<key>=<value>`, `label!=<key>`, or `label!=<key>=<value>`) - only remove containers, images, networks, and volumes with (or without, in case `label!=...` is used) the specified labels. 109 110 The `until` filter can be Unix timestamps, date formatted 111 timestamps, or Go duration strings (e.g. `10m`, `1h30m`) computed 112 relative to the daemon machine’s time. Supported formats for date 113 formatted time stamps include RFC3339Nano, RFC3339, `2006-01-02T15:04:05`, 114 `2006-01-02T15:04:05.999999999`, `2006-01-02Z07:00`, and `2006-01-02`. The local 115 timezone on the daemon will be used if you do not provide either a `Z` or a 116 `+-00:00` timezone offset at the end of the timestamp. When providing Unix 117 timestamps enter seconds[.nanoseconds], where seconds is the number of seconds 118 that have elapsed since January 1, 1970 (midnight UTC/GMT), not counting leap 119 seconds (aka Unix epoch or Unix time), and the optional .nanoseconds field is a 120 fraction of a second no more than nine digits long. 121 122 The `label` filter accepts two formats. One is the `label=...` (`label=<key>` or `label=<key>=<value>`), 123 which removes containers, images, networks, and volumes with the specified labels. The other 124 format is the `label!=...` (`label!=<key>` or `label!=<key>=<value>`), which removes 125 containers, images, networks, and volumes without the specified labels. 126 127 ## Related commands 128 129 * [volume create](volume_create.md) 130 * [volume ls](volume_ls.md) 131 * [volume inspect](volume_inspect.md) 132 * [volume rm](volume_rm.md) 133 * [volume prune](volume_prune.md) 134 * [Understand Data Volumes](https://docs.docker.com/storage/volumes/) 135 * [system df](system_df.md) 136 * [container prune](container_prune.md) 137 * [image prune](image_prune.md) 138 * [network prune](network_prune.md) 139 * [system prune](system_prune.md)