From 674fe91451afd3df773ea367f5093e2532dbd7af Mon Sep 17 00:00:00 2001 From: Ulises Reyes Date: Wed, 6 Nov 2013 21:23:35 -0500 Subject: [PATCH] Added example to the lxc_conf argument in the start command --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 37e418e2..a40d73e5 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,8 @@ dictionary whose key is the container's port and the value is a `[{'HostIp': '' all host interfaces. By leaving the `HostPort` blank, Docker will automatically assign a port. For example: `port_bindings={"2181/tcp": [{'HostIp': '' 'HostPort': ''}]}`. -`lxc_conf` allows to pass LXC configuration options in dict form. +`lxc_conf` allows to pass LXC configuration options using a dictionary in the form of Key Value pairs. +For example: `lxc_conf=[{"Key":"lxc.cgroup.cpu.shares","Value":"1"}, {"Key": ..., "Value": }]`. * `c.stop(container, timeout=10)` Stops a container. Similar to the `docker stop` command.