Project

Profile

Help

Story #5179

Updated by ipanova@redhat.com over 4 years ago

 
 h3. Workflow 

 Removal of docker content unit would allow removal of the content unit in question if no content unit on a higher level references it. If it can be removed, all (otherwise unused) content units on lower levels are deleted recursively. 

  * When a docker image manifest is removed, all its blobs( not referenced by other image manifests) are removed as well. If docker manifest is referenced by tags, or by manifest lists, removal is not possible unless force flag is specified. 

   * When a docker manifest list is removed, all its manifests( not referenced by other manifests lists and not tagged) are removed as well. Furthermore, same story with the blobs. If docker manifest list is referenced by tags,    removal is not possible unless force flag is specified. 

    *When a tag is removed , only tag is removed. 

 *Force* removal of docker content unit would allow removal of the content unit in question even if content unit on a higher level references it.  

  * When a docker image manifest is removed, all its blobs( not referenced by other image manifests) are removed as well. Also tags that were referencing this manifest will be removed. This case may leave partial manifest lists. 

   

    * When a docker manifest list is removed, all its manifests( not referenced by other manifests lists and not tagged) are removed as well. Furthermore, same story with the blobs. Also tags that were referencing this manifest list will be removed. 

  * When *When a tag is removed , only tag is removed (even in force mode) 

 +Question+ 

 When we remove tag with force flag do we want to recursively remove content units on lower levels?

Back