You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -874,7 +874,7 @@ public function imageBuild($requestBody = null, array $queryParameters = [], arr
874
874
*
875
875
* Available filters:
876
876
*
877
-
* - `until=<duration>`: duration relative to daemon's time, during which build cache was not used, in Go's duration format (e.g., '24h')
877
+
* - `until=<timestamp>` remove cache older than `<timestamp>`. The `<timestamp>` can be Unix timestamps, date formatted timestamps, or Go duration strings (e.g. `10m`, `1h30m`) computed relative to the daemon's local time.
878
878
* - `id=<id>`
879
879
* - `parent=<id>`
880
880
* - `type=<string>`
@@ -2633,7 +2633,7 @@ public static function create($httpClient = null, array $additionalPlugins = [],
Copy file name to clipboardExpand all lines: src/Endpoint/BuildPrune.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ class BuildPrune extends \Docker\API\Runtime\Client\BaseEndpoint implements \Doc
18
18
*
19
19
* Available filters:
20
20
*
21
-
* - `until=<duration>`: duration relative to daemon's time, during which build cache was not used, in Go's duration format (e.g., '24h')
21
+
* - `until=<timestamp>` remove cache older than `<timestamp>`. The `<timestamp>` can be Unix timestamps, date formatted timestamps, or Go duration strings (e.g. `10m`, `1h30m`) computed relative to the daemon's local time.
0 commit comments