summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnca Iordache <aiordache@users.noreply.github.com>2021-04-06 14:41:44 +0100
committerGitHub <noreply@github.com>2021-04-06 14:41:44 +0100
commit8813c3d2e0518687ff068cbac1cbaa7283d04772 (patch)
treeb0942394e538ace02ad3493e85eb44c8ba225d04
parent7a2ec959518a168d87476ccf544ee9e6a0368da3 (diff)
parenta34dd8b1a987bfd98882197c909a24a963b68a8f (diff)
downloaddocker-py-8813c3d2e0518687ff068cbac1cbaa7283d04772.tar.gz
Merge pull request #2799 from feliperuhland/fix-low-level-pull-example
Fix images low-level documentation examples
-rw-r--r--docker/api/image.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/docker/api/image.py b/docker/api/image.py
index 56c5448..db806c4 100644
--- a/docker/api/image.py
+++ b/docker/api/image.py
@@ -31,7 +31,7 @@ class ImageApiMixin(object):
Example:
- >>> image = cli.get_image("busybox:latest")
+ >>> image = client.api.get_image("busybox:latest")
>>> f = open('/tmp/busybox-latest.tar', 'wb')
>>> for chunk in image:
>>> f.write(chunk)
@@ -379,7 +379,7 @@ class ImageApiMixin(object):
Example:
- >>> for line in cli.pull('busybox', stream=True, decode=True):
+ >>> for line in client.api.pull('busybox', stream=True, decode=True):
... print(json.dumps(line, indent=4))
{
"status": "Pulling image (latest) from busybox",
@@ -458,7 +458,7 @@ class ImageApiMixin(object):
If the server returns an error.
Example:
- >>> for line in cli.push('yourname/app', stream=True, decode=True):
+ >>> for line in client.api.push('yourname/app', stream=True, decode=True):
... print(line)
{'status': 'Pushing repository yourname/app (1 tags)'}
{'status': 'Pushing','progressDetail': {}, 'id': '511136ea3c5a'}
@@ -549,7 +549,7 @@ class ImageApiMixin(object):
Example:
- >>> client.tag('ubuntu', 'localhost:5000/ubuntu', 'latest',
+ >>> client.api.tag('ubuntu', 'localhost:5000/ubuntu', 'latest',
force=True)
"""
params = {