mirror of https://github.com/docker/docker-py.git
Merge pull request #779 from rutsky/patch-4
fix network_mode 'none' value
This commit is contained in:
commit
9d1f95715a
|
@ -79,7 +79,7 @@ for example:
|
|||
* dns_search (list): DNS search domains
|
||||
* volumes_from (str or list): List of container names or Ids to get volumes
|
||||
from. Optionally a single string joining container id's with commas
|
||||
* network_mode (str): One of `['bridge', None, 'container:<name|id>', 'host']`
|
||||
* network_mode (str): One of `['bridge', 'none', 'container:<name|id>', 'host']`
|
||||
* restart_policy (dict): "Name" param must be one of
|
||||
`['on-failure', 'always']`
|
||||
* cap_add (list of str): Add kernel capabilities
|
||||
|
|
Loading…
Reference in New Issue