Answers for "python docker api example"

1

python docker api example

import docker
client = docker.from_env()
container = client.containers.run("bfirsh/reticulate-splines", detach=True)
print(container.id)
Posted by: Guest on May-26-2021

Python Answers by Framework

Browse Popular Code Answers by Language