Browse Source

Fix argument order for docker create in tutorial

Signed-off-by: Harald Albers <github@albersweb.de>
Harald Albers 9 năm trước cách đây
mục cha
commit
109334030c
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      docs/tutorials/dockervolumes.md

+ 1 - 1
docs/tutorials/dockervolumes.md

@@ -203,7 +203,7 @@ The following example also creates the `my-named-volume` volume, this time
 using the `docker volume create` command.
 
 ```bash
-$ docker volume create -d flocker my-named-volume -o size=20GB
+$ docker volume create -d flocker -o size=20GB my-named-volume
 
 $ docker run -d -P \
   -v my-named-volume:/opt/webapp \