From 39ae201697b78576269689ae15a5f0035de29c2c Mon Sep 17 00:00:00 2001 From: harold cooper Date: Wed, 4 Nov 2015 13:18:42 -0500 Subject: [PATCH] fix documentation inconsistency for volume create the example command uses `/world` but the description refers to `/src` Signed-off-by: Harold Cooper Upstream-commit: e793642ac957987eedb6bef0c377a9b22219d435 Component: cli --- components/cli/docs/reference/commandline/volume_create.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/cli/docs/reference/commandline/volume_create.md b/components/cli/docs/reference/commandline/volume_create.md index 35f8a00b38..8307254320 100644 --- a/components/cli/docs/reference/commandline/volume_create.md +++ b/components/cli/docs/reference/commandline/volume_create.md @@ -25,7 +25,7 @@ Creates a new volume that containers can consume and store data in. If a name is hello $ docker run -d -v hello:/world busybox ls /world -The mount is created inside the container's `/src` directory. Docker does not support relative paths for mount points inside the container. +The mount is created inside the container's `/world` directory. Docker does not support relative paths for mount points inside the container. Multiple containers can use the same volume in the same time period. This is useful if two containers need access to shared data. For example, if one container writes and the other reads the data.