IsIntermediate returns true if the image is an intermediate image, that is an untagged image with children.
(ctx context.Context)
| 167 | // IsIntermediate returns true if the image is an intermediate image, that is |
| 168 | // an untagged image with children. |
| 169 | func (i *Image) IsIntermediate(ctx context.Context) (bool, error) { |
| 170 | return i.isIntermediate(ctx, nil) |
| 171 | } |
| 172 | |
| 173 | // isIntermediate returns true if the image is an intermediate image, that is |
| 174 | // an untagged image with children. If tree is nil, it will created for this |