mirror of https://github.com/docker/docker-py.git
Correct the description of dns_opt option of create_container
Signed-off-by: Boik <qazbnm456@gmail.com>
This commit is contained in:
parent
b9e5863e48
commit
015fe1cf5e
|
|
@ -391,8 +391,6 @@ class ContainerApiMixin(object):
|
|||
``{"PASSWORD": "xxx"}``.
|
||||
dns (:py:class:`list`): DNS name servers. Deprecated since API
|
||||
version 1.10. Use ``host_config`` instead.
|
||||
dns_opt (:py:class:`list`): Additional options to be added to the
|
||||
container's ``resolv.conf`` file
|
||||
volumes (str or list): List of paths inside the container to use
|
||||
as volumes.
|
||||
volumes_from (:py:class:`list`): List of container names or Ids to
|
||||
|
|
@ -498,6 +496,8 @@ class ContainerApiMixin(object):
|
|||
to have read-write access to the host's ``/dev/sda`` via a
|
||||
node named ``/dev/xvda`` inside the container.
|
||||
dns (:py:class:`list`): Set custom DNS servers.
|
||||
dns_opt (:py:class:`list`): Additional options to be added to the
|
||||
container's ``resolv.conf`` file
|
||||
dns_search (:py:class:`list`): DNS search domains.
|
||||
extra_hosts (dict): Addtional hostnames to resolve inside the
|
||||
container, as a mapping of hostname to IP address.
|
||||
|
|
|
|||
Loading…
Reference in New Issue