We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0a94e5a + 02c5914 commit 36b2d81Copy full SHA for 36b2d81
docker/errors.py
@@ -23,7 +23,8 @@ def create_api_error_from_http_exception(e):
23
if response.status_code == 404:
24
if explanation and ('No such image' in str(explanation) or
25
'not found: does not exist or no pull access'
26
- in str(explanation)):
+ in str(explanation) or
27
+ 'repository does not exist' in str(explanation)):
28
cls = ImageNotFound
29
else:
30
cls = NotFound
0 commit comments