Merge pull request #93 from atbaker/Readme_fix

Adds missing comma in start ports dict
This commit is contained in:
Joffrey F 2013-11-11 08:15:26 -08:00
commit 2dd409aa8b
1 changed files with 1 additions and 1 deletions

View File

@ -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.