docker: fix volume[s]_from typo
Code makes reference to volume_from instead of volumes_from. If volumes_from is passed as an argument, generates a KeyError.
This commit is contained in:
parent
1dc2ae0aef
commit
88d5f15025
1 changed files with 1 additions and 1 deletions
|
@ -467,7 +467,7 @@ class DockerManager(object):
|
|||
# server APIVersion is passed to a docker-py function that takes strings
|
||||
_cap_ver_req = {
|
||||
'dns': ((0, 3, 0), '1.10'),
|
||||
'volume_from': ((0, 3, 0), '1.10'),
|
||||
'volumes_from': ((0, 3, 0), '1.10'),
|
||||
'restart_policy': ((0, 5, 0), '1.14'),
|
||||
# Clientside only
|
||||
'insecure_registry': ((0, 5, 0), '0.0')
|
||||
|
|
Loading…
Reference in a new issue