fix/ee-1909/show-pull-image-error (#6195)

Co-authored-by: sunportainer <ericsun@SG1.local>
pull/6241/head
sunportainer 2021-12-08 12:07:45 +08:00 committed by GitHub
parent a78d8a4ff1
commit b3e04adee3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -302,7 +302,7 @@ angular.module('portainer.docker').controller('ContainerController', [
return $q.when();
}
return RegistryService.retrievePorRegistryModelFromRepository(container.Config.Image, endpoint.Id).then((registryModel) => {
return ImageService.pullImage(registryModel, true);
return ImageService.pullImage(registryModel, false);
});
}