mirror of https://github.com/docker/docs.git
Address review comments.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
fe3ec3f77f
commit
a2120e5ba3
|
@ -83,7 +83,7 @@ Creates a new container.
|
||||||
If 'host-src' is missing, then docker creates a new volume.
|
If 'host-src' is missing, then docker creates a new volume.
|
||||||
If neither 'rw' or 'ro' is specified then the volume is mounted
|
If neither 'rw' or 'ro' is specified then the volume is mounted
|
||||||
in read-write mode.
|
in read-write mode.
|
||||||
--volume-driver="" Optional volume driver for the container
|
--volume-driver="" Container's volume driver
|
||||||
--volumes-from=[] Mount volumes from the specified container(s)
|
--volumes-from=[] Mount volumes from the specified container(s)
|
||||||
-w, --workdir="" Working directory inside the container
|
-w, --workdir="" Working directory inside the container
|
||||||
|
|
||||||
|
|
|
@ -84,7 +84,7 @@ parent = "smn_cli"
|
||||||
If 'host-src' is missing, then docker creates a new volume.
|
If 'host-src' is missing, then docker creates a new volume.
|
||||||
If neither 'rw' or 'ro' is specified then the volume is mounted
|
If neither 'rw' or 'ro' is specified then the volume is mounted
|
||||||
in read-write mode.
|
in read-write mode.
|
||||||
--volume-driver="" Optional volume driver for the container
|
--volume-driver="" Container's volume driver
|
||||||
--volumes-from=[] Mount volumes from the specified container(s)
|
--volumes-from=[] Mount volumes from the specified container(s)
|
||||||
-w, --workdir="" Working directory inside the container
|
-w, --workdir="" Working directory inside the container
|
||||||
|
|
||||||
|
|
|
@ -307,11 +307,9 @@ any options, the systems uses the following options:
|
||||||
Bind mount a volume (e.g., from the host: -v /host:/container, from Docker: -v /container)
|
Bind mount a volume (e.g., from the host: -v /host:/container, from Docker: -v /container)
|
||||||
|
|
||||||
**--volume-driver**=""
|
**--volume-driver**=""
|
||||||
Optional volume driver for the container
|
Container's volume driver. This driver creates volumes specified either from
|
||||||
|
a Dockerfile's `VOLUME` instruction or from the `docker run -v` flag.
|
||||||
If the container has a volume either from the `VOLUME` instruction in a
|
See **docker-volume-create(1)** for full details.
|
||||||
Dockerfile or the `-v` flag, a driver can be specified to create the volumes
|
|
||||||
with. See **docker-volume-create(1)** for full details.
|
|
||||||
|
|
||||||
**--volumes-from**=[]
|
**--volumes-from**=[]
|
||||||
Mount volumes from the specified container(s)
|
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
|
||||||
the `foo` specification, Docker creates a named volume.
|
the `foo` specification, Docker creates a named volume.
|
||||||
|
|
||||||
**--volume-driver**=""
|
**--volume-driver**=""
|
||||||
Optional volume driver for the container
|
Container's volume driver. This driver creates volumes specified either from
|
||||||
|
a Dockerfile's `VOLUME` instruction or from the `docker run -v` flag.
|
||||||
If the container has a volume either from the `VOLUME` instruction in a
|
See **docker-volume-create(1)** for full details.
|
||||||
Dockerfile or the `-v` flag, a driver can be specified to create the volumes
|
|
||||||
with. See **docker-volume-create(1)** for full details.
|
|
||||||
|
|
||||||
**--volumes-from**=[]
|
**--volumes-from**=[]
|
||||||
Mount volumes from the specified container(s)
|
Mount volumes from the specified container(s)
|
||||||
|
|
Loading…
Reference in New Issue