diff --git a/docker/common/cinder-app/cinder-volume/volume-group-create.sh b/docker/common/cinder-app/cinder-volume/volume-group-create.sh
index 908d987b0d91e59723da8e362c1f6f8f149a0031..338850c84531acbbe78eee0d5d98ee44ddf547cd 100755
--- a/docker/common/cinder-app/cinder-volume/volume-group-create.sh
+++ b/docker/common/cinder-app/cinder-volume/volume-group-create.sh
@@ -10,7 +10,7 @@ backing_file=/opt/data/cinder_volume
 check_required_vars CINDER_LVM_LO_VOLUME_SIZE CINDER_VOLUME_GROUP
 
 if ! vgs ${CINDER_VOLUME_GROUP}; then
-    [[ ! -f $backing_file ]] && truncate -s ${CINDER_LVM_LO_VOLUMES_SIZE} $backing_file
+    [[ ! -f $backing_file ]] && truncate -s ${CINDER_LVM_LO_VOLUME_SIZE} $backing_file
     vg_dev=`losetup -f --show $backing_file`
     if ! vgs ${CINDER_VOLUME_GROUP}; then
         vgcreate ${CINDER_VOLUME_GROUP} $vg_dev