Update system_prune.md

Added comment because this looks like it should work but doesn't
> docker system prune --force --all --volumes --filter "until=36h"
ERROR: The "until" filter is not supported with "--volumes"
This commit is contained in:
Martin 2021-12-02 16:57:49 +00:00 committed by GitHub
parent 9bc104eff0
commit a3da803a11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -105,6 +105,7 @@ than one filter, then pass multiple flags (e.g., `--filter "foo=bar" --filter "b
The currently supported filters are: The currently supported filters are:
* until (`<timestamp>`) - only remove containers, images, and networks created before given timestamp * until (`<timestamp>`) - only remove containers, images, and networks created before given timestamp
* Cannot be used with `--volumes`
* 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. * 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.
The `until` filter can be Unix timestamps, date formatted The `until` filter can be Unix timestamps, date formatted