mirror of https://github.com/docker/docker-py.git
Updating Client.build() doc to mention rm-mismatch. Fixes #332.
This commit is contained in:
parent
39ee2d55b2
commit
1379f431ff
|
|
@ -52,7 +52,9 @@ correct value (e.g `gzip`).
|
||||||
* quiet (bool): Whether to return the status
|
* quiet (bool): Whether to return the status
|
||||||
* fileobj: A file object to use as the Dockerfile. (Or a file-like object)
|
* fileobj: A file object to use as the Dockerfile. (Or a file-like object)
|
||||||
* nocache (bool): Don't use the cache when set to `True`
|
* nocache (bool): Don't use the cache when set to `True`
|
||||||
* rm (bool): Remove intermediate containers
|
* rm (bool): Remove intermediate containers. The `docker build` command now
|
||||||
|
defaults to ``--rm=true``, but we have kept the old default of `False`
|
||||||
|
to preserve backward compatibility
|
||||||
* stream (bool): *Deprecated for API version > 1.8 (always True)*.
|
* stream (bool): *Deprecated for API version > 1.8 (always True)*.
|
||||||
Return a blocking generator you can iterate over to retrieve build output as
|
Return a blocking generator you can iterate over to retrieve build output as
|
||||||
it happens
|
it happens
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue