From 580a8bc1e73380a2e05395870716ff86fb2a3e64 Mon Sep 17 00:00:00 2001 From: francisco souza Date: Thu, 3 Jun 2021 09:03:29 -0400 Subject: [PATCH] image: add All to PullImageOptions Closes #861. --- image.go | 1 + 1 file changed, 1 insertion(+) diff --git a/image.go b/image.go index 83af56b9..85d7d6a7 100644 --- a/image.go +++ b/image.go @@ -291,6 +291,7 @@ func (c *Client) PushImage(opts PushImageOptions, auth AuthConfiguration) error // // See https://goo.gl/qkoSsn for more details. type PullImageOptions struct { + All bool Repository string `qs:"fromImage"` Tag string Platform string `ver:"1.32"`