소스 검색

Merge pull request #17694 from hrldcpr/patch-1

fix documentation inconsistency for volume create
Sebastiaan van Stijn 9 년 전
부모
커밋
1ef3b1f857
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/reference/commandline/volume_create.md

+ 1 - 1
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.