Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions content/manuals/engine/manage-resources/pruning.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,10 @@ Are you sure you want to continue? [y/N] y
By default, you're prompted to continue. To bypass the prompt, use the `-f` or
`--force` flag.

By default, all unused containers, networks, and images are removed. You can
limit the scope using the `--filter` flag. For instance, the following command
removes items older than 24 hours:
By default, unused containers and networks are removed, along with dangling
images. Unused tagged images are kept unless you also pass `-a` / `--all`.
You can further limit the scope with the `--filter` flag. For instance, the
following command removes items older than 24 hours:

```console
$ docker system prune --filter "until=24h"
Expand Down