Fix a bug where images can't be pushed that would remove a dependency image.
This commit is contained in:
parent
1af0cb3341
commit
984e14f9c5
1 changed files with 3 additions and 1 deletions
|
@ -126,7 +126,9 @@ def create_repository(namespace, repository):
|
||||||
if existing.docker_image_id in new_repo_images:
|
if existing.docker_image_id in new_repo_images:
|
||||||
added_images.pop(existing.docker_image_id)
|
added_images.pop(existing.docker_image_id)
|
||||||
else:
|
else:
|
||||||
existing.repositoryimage.delete()
|
logger.debug('Deleting existing image with id: %s' %
|
||||||
|
existing.docker_image_id)
|
||||||
|
existing.delete_instance()
|
||||||
|
|
||||||
for image_description in added_images.values():
|
for image_description in added_images.values():
|
||||||
image = model.create_image(image_description['id'], repo)
|
image = model.create_image(image_description['id'], repo)
|
||||||
|
|
Reference in a new issue