mirror of https://github.com/docker/docker-py.git
Set default value for pull to False on build(). Fixes 622.
This commit is contained in:
parent
be73aaf540
commit
fd1722591b
|
|
@ -306,7 +306,7 @@ class Client(requests.Session):
|
||||||
|
|
||||||
def build(self, path=None, tag=None, quiet=False, fileobj=None,
|
def build(self, path=None, tag=None, quiet=False, fileobj=None,
|
||||||
nocache=False, rm=False, stream=False, timeout=None,
|
nocache=False, rm=False, stream=False, timeout=None,
|
||||||
custom_context=False, encoding=None, pull=True,
|
custom_context=False, encoding=None, pull=False,
|
||||||
forcerm=False, dockerfile=None, container_limits=None):
|
forcerm=False, dockerfile=None, container_limits=None):
|
||||||
remote = context = headers = None
|
remote = context = headers = None
|
||||||
container_limits = container_limits or {}
|
container_limits = container_limits or {}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue