Merge pull request #1292 from liubin/master

Fix DriverConfig JSON key
This commit is contained in:
Joffrey F 2016-11-11 12:38:04 -08:00 committed by GitHub
commit 2ca68f3d08
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ class Mount(dict):
if labels:
volume_opts['Labels'] = labels
if driver_config:
volume_opts['driver_config'] = driver_config
volume_opts['DriverConfig'] = driver_config
if volume_opts:
self['VolumeOptions'] = volume_opts
if propagation: