From 7bbeca8b9fa7cf4befae16fb95ae8887690888a2 Mon Sep 17 00:00:00 2001 From: "Andrew T. Baker" Date: Sat, 9 Nov 2013 15:36:35 -0500 Subject: [PATCH] Adds missing comma in start ports dict --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7082ba43..024012a0 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,7 @@ Example of binds mapping from host to container: `{'/mnt/srv/': '/srv'}` dictionary whose key is the container's port and the value is a `[{'HostIp': '' 'HostPort': ''}]` list. Leaving `HostIp` blank will expose the port on all host interfaces. By leaving the `HostPort` blank, Docker will -automatically assign a port. For example: `port_bindings={"2181/tcp": [{'HostIp': '' +automatically assign a port. For example: `port_bindings={"2181/tcp": [{'HostIp': '', 'HostPort': ''}]}`. `lxc_conf` allows to pass LXC configuration options using a dictionary.