From eefcb065b0488f074c77ea2ce04db83d045473a5 Mon Sep 17 00:00:00 2001 From: Felix Hummel Date: Sat, 25 Jan 2014 19:04:32 +0100 Subject: [PATCH] fix "binds" docs: { host_dir: docker_dir } Not the other way around. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 75f8111c..1b4e9d78 100644 --- a/README.md +++ b/README.md @@ -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' }) ```