From e4186ba7087b61e1d770fa087cd46729bbfda32e Mon Sep 17 00:00:00 2001 From: Jonathan Choy Date: Fri, 18 May 2018 11:09:35 -0400 Subject: [PATCH] Amended per cleanup request. Signed-off-by: Jonathan Choy --- volume/local/local.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volume/local/local.go b/volume/local/local.go index 78a3ec8288..b1eb2881b4 100644 --- a/volume/local/local.go +++ b/volume/local/local.go @@ -211,7 +211,7 @@ func (r *Root) Remove(v volume.Volume) error { } if !r.scopedPath(realPath) { - return errdefs.System(errors.Errorf("Unable to remove a directory outside of the Docker root %s: %s", r.scope, realPath)) + return errdefs.System(errors.Errorf("Unable to remove a directory outside of the local volume root %s: %s", r.scope, realPath)) } if err := removePath(realPath); err != nil {