Kaydet (Commit) d5693ed9 authored tarafından Joffrey F's avatar Joffrey F

Add prune_builds to DockerClient

Signed-off-by: 's avatarJoffrey F <joffrey@docker.com>
üst 9709dd45
......@@ -432,6 +432,10 @@ class ImageCollection(Collection):
return self.client.api.prune_images(filters=filters)
prune.__doc__ = APIClient.prune_images.__doc__
def prune_builds(self, *args, **kwargs):
return self.client.api.prune_builds(*args, **kwargs)
prune_builds.__doc__ = APIClient.prune_builds.__doc__
def normalize_platform(platform, engine_info):
if platform is None:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment