Merge pull request #146 from felixhummel/fix-readme-binds

fix "binds" docs: { host_dir: docker_dir }
This commit is contained in:
Joffrey F 2014-01-25 11:32:37 -08:00
commit 3ad4a442be
1 changed files with 2 additions and 2 deletions

View File

@ -287,7 +287,7 @@ Volume mappings are then declared inside the `Client.start` method like this:
```python
c.start(container_id, binds={
'/mnt/vol2': '/home/user1/',
'/mnt/vol1': '/var/www'
'/home/user1/': '/mnt/vol2',
'/var/www': '/mnt/vol1'
})
```