소스 검색

Merge pull request #11210 from xuhdev/patch-1

Update doc: "docker create" must specify a command
Michael Crosby 10 년 전
부모
커밋
e6b18cb66d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/sources/userguide/dockervolumes.md

+ 1 - 1
docs/sources/userguide/dockervolumes.md

@@ -124,7 +124,7 @@ Let's create a new named container with a volume to share.
 While this container doesn't run an application, it reuses the `training/postgres`
 image so that all containers are using layers in common, saving disk space.
 
-    $ sudo docker create -v /dbdata --name dbdata training/postgres
+    $ sudo docker create -v /dbdata --name dbdata training/postgres /bin/true
 
 You can then use the `--volumes-from` flag to mount the `/dbdata` volume in another container.