DeleteImage deletes the named image from the registry, if supported.
(ctx context.Context, sys *types.SystemContext)
| 191 | |
| 192 | // DeleteImage deletes the named image from the registry, if supported. |
| 193 | func (ref dockerReference) DeleteImage(ctx context.Context, sys *types.SystemContext) error { |
| 194 | return deleteImage(ctx, sys, ref) |
| 195 | } |
| 196 | |
| 197 | // tagOrDigest returns a tag or digest from the reference. |
| 198 | func (ref dockerReference) tagOrDigest() (string, error) { |
nothing calls this directly
no test coverage detected