summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoffrey F <joffrey@docker.com>2014-12-16 17:16:18 -0800
committerJoffrey F <joffrey@docker.com>2014-12-17 11:44:51 -0800
commite1401c5573693c578cad7186730ad330bc7ec7cf (patch)
treecf935892f94de8fbafaea93d6ea367ef21678f05
parent09a5eb8ae79dcba5c232728c1df3644e5bf72c71 (diff)
downloaddocker-py-e1401c5573693c578cad7186730ad330bc7ec7cf.tar.gz
Fixed VolumesFrom bug
-rw-r--r--docker/utils/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/utils/utils.py b/docker/utils/utils.py
index 8e134b4..98d59c4 100644
--- a/docker/utils/utils.py
+++ b/docker/utils/utils.py
@@ -331,7 +331,7 @@ def create_host_config(
if volumes_from is not None:
if isinstance(volumes_from, six.string_types):
volumes_from = volumes_from.split(',')
- host_config['VolumesFrom'] = volumes_from
+ host_config['VolumesFrom'] = volumes_from
if binds:
host_config['Binds'] = convert_volume_binds(binds)