mirror of https://github.com/docker/docker-py.git
Update image create error parsing
Support new error message returned for image creation in: https://github.com/moby/moby/pull/33005 Signed-off-by: Alfred Landrum <alfred@leakybucket.org>
This commit is contained in:
parent
0a94e5a945
commit
02c5914d29
|
|
@ -23,7 +23,8 @@ def create_api_error_from_http_exception(e):
|
|||
if response.status_code == 404:
|
||||
if explanation and ('No such image' in str(explanation) or
|
||||
'not found: does not exist or no pull access'
|
||||
in str(explanation)):
|
||||
in str(explanation) or
|
||||
'repository does not exist' in str(explanation)):
|
||||
cls = ImageNotFound
|
||||
else:
|
||||
cls = NotFound
|
||||
|
|
|
|||
Loading…
Reference in New Issue