mirror of https://github.com/docker/docker-py.git
update docs to py3.5
Signed-off-by: Thomas Grainger <tom.grainger@procensus.com>
This commit is contained in:
parent
e0b9cb2a8c
commit
7e24304934
|
@ -1,4 +1,4 @@
|
|||
FROM python:3.4
|
||||
FROM python:3.5
|
||||
MAINTAINER Joffrey F <joffrey@docker.com>
|
||||
|
||||
RUN mkdir /home/docker-py
|
||||
|
|
|
@ -109,7 +109,7 @@ correct value (e.g `gzip`).
|
|||
```
|
||||
|
||||
**Raises:** [TypeError](
|
||||
https://docs.python.org/3.4/library/exceptions.html#TypeError) if `path` nor
|
||||
https://docs.python.org/3.5/library/exceptions.html#TypeError) if `path` nor
|
||||
`fileobj` are specified
|
||||
|
||||
## commit
|
||||
|
@ -207,7 +207,7 @@ of the created container in bytes) or a string with a units identification char
|
|||
character, bytes are assumed as an intended unit.
|
||||
|
||||
`volumes_from` and `dns` arguments raise [TypeError](
|
||||
https://docs.python.org/3.4/library/exceptions.html#TypeError) exception if
|
||||
https://docs.python.org/3.5/library/exceptions.html#TypeError) exception if
|
||||
they are used against v1.10 and above of the Docker remote API. Those
|
||||
arguments should be passed as part of the `host_config` dictionary.
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ first.*
|
|||
* ca_cert (str): Path to CA cert file
|
||||
* verify (bool or str): This can be `False` or a path to a CA Cert file
|
||||
* ssl_version (int): A valid [SSL version](
|
||||
https://docs.python.org/3.4/library/ssl.html#ssl.PROTOCOL_TLSv1)
|
||||
https://docs.python.org/3.5/library/ssl.html#ssl.PROTOCOL_TLSv1)
|
||||
* assert_hostname (bool): Verify hostname of docker daemon
|
||||
|
||||
### configure_client
|
||||
|
|
Loading…
Reference in New Issue