From 8bf6e387002fc8da9105ff7b5679d59eaf739b81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B0=AD=E4=B9=9D=E9=BC=8E?= <109224573@qq.com> Date: Sat, 7 Mar 2020 21:13:11 +0800 Subject: [PATCH] Chore: Fix indentation --- storage/volumes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/volumes.md b/storage/volumes.md index ac0cde58f3..0262952b09 100644 --- a/storage/volumes.md +++ b/storage/volumes.md @@ -90,7 +90,7 @@ If you need to specify volume driver options, you must use `--mount`. > list in the `o` parameter. This example shows the correct way to escape the list. > > $ docker service create \ -> --mount 'type=volume,src=,dst=,volume-driver=local,volume-opt=type=nfs,volume-opt=device=:,"volume-opt=o=addr=,vers=4,soft,timeo=180,bg,tcp,rw"' +> --mount 'type=volume,src=,dst=,volume-driver=local,volume-opt=type=nfs,volume-opt=device=:,"volume-opt=o=addr=,vers=4,soft,timeo=180,bg,tcp,rw"' > --name myservice \ > > {: .warning}