From 488e14c560968ca5970ea8ea446d69dc8e53b27f Mon Sep 17 00:00:00 2001 From: Philipp Moeller Date: Wed, 20 May 2015 11:29:39 +0200 Subject: [PATCH] Remove non-existing argument There is no container argument in create_container_config. This is probably a leftover when this was copied from the Client.start documentation --- docs/hostconfig.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/hostconfig.md b/docs/hostconfig.md index c9f946418a..001be172cc 100644 --- a/docs/hostconfig.md +++ b/docs/hostconfig.md @@ -66,7 +66,6 @@ for example: **Params** -* container (str): The container to start * binds: Volumes to bind. See [Using volumes](volumes.md) for more information. * port_bindings (dict): Port bindings. See [Port bindings](port-bindings.md) for more information. @@ -99,4 +98,4 @@ for example: >>> from docker.utils import create_host_config >>> create_host_config(privileged=True, cap_drop=['MKNOD'], volumes_from=['nostalgic_newton']) {'CapDrop': ['MKNOD'], 'LxcConf': None, 'Privileged': True, 'VolumesFrom': ['nostalgic_newton'], 'PublishAllPorts': False} -``` \ No newline at end of file +```