-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Interactive Commands & Low Level API #28
Comments
import json
from docker import APIClient
cli = APIClient(base_url='tcp://127.0.0.1:4243')
for line in cli.pull('python:3.4-alpine', stream=True):
print(__pretty_response(line))
def __pretty_response(line):
result = ""
line = json.loads(line)
if "id" in line:
result += "%s: " % str(line["id"])
if "status" in line:
result += "%s" % str(line["status"])
if "progress" in line:
result += " %s" % str(line["progress"])
return result
|
Finally how the low level api works from app.modules.service.docker.low_level.image import Image
_image = Image(5)
if _image.check_health("api_client"):
for line in _image.pull("php", "latest"):
print(_image._pretty_response(line))
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The text was updated successfully, but these errors were encountered: