Merge pull request #476 from gtaylor/build_rm_defaults_doc

Update Client.build() docs to note rm default mis-match
This commit is contained in:
Joffrey F 2015-02-04 22:22:57 -08:00
commit 19fe1b5907
1 changed files with 3 additions and 1 deletions

View File

@ -52,7 +52,9 @@ correct value (e.g `gzip`).
* quiet (bool): Whether to return the status
* 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`
* 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)*.
Return a blocking generator you can iterate over to retrieve build output as
it happens