Export exports images to a Tar stream. The tar archive is in OCI format with a Docker compatible manifest when a single target platform is given.
(ctx context.Context, w io.Writer, opts ...archive.ExportOpt)
| 27 | // The tar archive is in OCI format with a Docker compatible manifest |
| 28 | // when a single target platform is given. |
| 29 | func (c *Client) Export(ctx context.Context, w io.Writer, opts ...archive.ExportOpt) error { |
| 30 | return archive.Export(ctx, c.ContentStore(), w, opts...) |
| 31 | } |
nothing calls this directly
no test coverage detected