Browse code

Address review comments.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Sebastiaan van Stijn authored on 2015/12/04 00:07:54
Showing 4 changed files
... ...
@@ -83,7 +83,7 @@ Creates a new container.
83 83
                                     If 'host-src' is missing, then docker creates a new volume.
84 84
                                     If neither 'rw' or 'ro' is specified then the volume is mounted
85 85
                                     in read-write mode.
86
-      --volume-driver=""            Optional volume driver for the container
86
+      --volume-driver=""            Container's volume driver
87 87
       --volumes-from=[]             Mount volumes from the specified container(s)
88 88
       -w, --workdir=""              Working directory inside the container
89 89
 
... ...
@@ -84,7 +84,7 @@ parent = "smn_cli"
84 84
                                     If 'host-src' is missing, then docker creates a new volume.
85 85
                                     If neither 'rw' or 'ro' is specified then the volume is mounted
86 86
                                     in read-write mode.
87
-      --volume-driver=""            Optional volume driver for the container
87
+      --volume-driver=""            Container's volume driver
88 88
       --volumes-from=[]             Mount volumes from the specified container(s)
89 89
       -w, --workdir=""              Working directory inside the container
90 90
 
... ...
@@ -307,11 +307,9 @@ any options, the systems uses the following options:
307 307
    Bind mount a volume (e.g., from the host: -v /host:/container, from Docker: -v /container)
308 308
 
309 309
 **--volume-driver**=""
310
-   Optional volume driver for the container
311
-
312
-   If the container has a volume either from the `VOLUME` instruction in a
313
-   Dockerfile or the `-v` flag, a driver can be specified to create the volumes
314
-   with. See **docker-volume-create(1)** for full details.
310
+   Container's volume driver. This driver creates volumes specified either from
311
+   a Dockerfile's `VOLUME` instruction or from the `docker run -v` flag.
312
+   See **docker-volume-create(1)** for full details.
315 313
 
316 314
 **--volumes-from**=[]
317 315
    Mount volumes from the specified container(s)
... ...
@@ -514,11 +514,9 @@ If you supply the `/foo` value, Docker creates a bind-mount. If you supply
514 514
 the `foo` specification, Docker creates a named volume.
515 515
 
516 516
 **--volume-driver**=""
517
-   Optional volume driver for the container
518
-
519
-   If the container has a volume either from the `VOLUME` instruction in a
520
-   Dockerfile or the `-v` flag, a driver can be specified to create the volumes
521
-   with. See **docker-volume-create(1)** for full details.
517
+   Container's volume driver. This driver creates volumes specified either from
518
+   a Dockerfile's `VOLUME` instruction or from the `docker run -v` flag.
519
+   See **docker-volume-create(1)** for full details.
522 520
 
523 521
 **--volumes-from**=[]
524 522
    Mount volumes from the specified container(s)