Change manifest creation to take in the map of blobs that form the manifest
We need to lookup the blobs *specific to the images in that manifest*, so we now pass them in from the locations in which we know that information
This commit is contained in:
parent
e3da522d26
commit
56222f95dc
8 changed files with 89 additions and 43 deletions
|
@ -155,7 +155,7 @@ class DockerRegistryV2DataInterface(object):
|
|||
pass
|
||||
|
||||
@abstractmethod
|
||||
def save_manifest(self, repository, tag_name, manifest):
|
||||
def save_manifest(self, repository, tag_name, manifest, blob_map):
|
||||
"""
|
||||
Saves a manifest, under the matching repository as a tag with the given name.
|
||||
|
||||
|
|
Reference in a new issue