From 6a04ecf81333d7b26928f0dcbfb416ca788f287c Mon Sep 17 00:00:00 2001
From: "Kai Qiang Wu(Kennan)" <wkqwu@cn.ibm.com>
Date: Tue, 12 Jan 2016 05:13:44 +0000
Subject: [PATCH] Update response content for volume mounts

Signed-off-by: Kai Qiang Wu(Kennan) <wkqwu@cn.ibm.com>
---
 docs/reference/api/docker_remote_api_v1.22.md | 10 ++++++++--
 docs/userguide/dockervolumes.md               |  3 ++-
 2 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/docs/reference/api/docker_remote_api_v1.22.md b/docs/reference/api/docker_remote_api_v1.22.md
index badb0b8c1f..7f21dc4d9c 100644
--- a/docs/reference/api/docker_remote_api_v1.22.md
+++ b/docs/reference/api/docker_remote_api_v1.22.md
@@ -220,10 +220,13 @@ Create a container
            },
            "Mounts": [
              {
+               "Name": "fac362...80535",
                "Source": "/data",
                "Destination": "/data",
+               "Driver": "local",
                "Mode": "ro,Z",
-               "RW": false
+               "RW": false,
+               "Propagation": ""
              }
            ],
            "WorkingDir": "",
@@ -572,10 +575,13 @@ Return low-level information on the container `id`
 		},
 		"Mounts": [
 			{
+				"Name": "fac362...80535",
 				"Source": "/data",
 				"Destination": "/data",
+				"Driver": "local",
 				"Mode": "ro,Z",
-				"RW": false
+				"RW": false,
+				"Propagation": ""
 			}
 		]
 	}
diff --git a/docs/userguide/dockervolumes.md b/docs/userguide/dockervolumes.md
index 0e7b2755aa..5ddc9c187c 100644
--- a/docs/userguide/dockervolumes.md
+++ b/docs/userguide/dockervolumes.md
@@ -73,7 +73,8 @@ volumes. The output should look something similar to the following:
             "Destination": "/webapp",
             "Driver": "local",
             "Mode": "",
-            "RW": true
+            "RW": true,
+            "Propagation": ""
         }
     ]
     ...