We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94e9108 commit 9d86194Copy full SHA for 9d86194
docker/models/images.py
@@ -432,6 +432,10 @@ def prune(self, filters=None):
432
return self.client.api.prune_images(filters=filters)
433
prune.__doc__ = APIClient.prune_images.__doc__
434
435
+ def prune_builds(self, *args, **kwargs):
436
+ return self.client.api.prune_builds(*args, **kwargs)
437
+ prune_builds.__doc__ = APIClient.prune_builds.__doc__
438
+
439
440
def normalize_platform(platform, engine_info):
441
if platform is None:
0 commit comments