docs/engine/admin/volumes
Arush Salil 52669983f8 Update code snippet (#5111)
In the code sample mentioned in `Start a service with volumes` it says

> The following example starts a nginx service with four replicas, each of which uses a local volume called myvol2.

But --replicas=4 is missing from the code sample which reads:

```
$ docker service create -d \
  --name devtest-service \
  --mount source=myvol2,target=/app \
  nginx:latest
```
Instead of this it rather should be:

```
$ docker service create -d \
--replicas=4 \
--name devtest-service \
--mount source=myvol2,target=/app \
nginx:latest
```
2017-10-25 18:08:45 -07:00
..
images Add graphics showing types of mounts (#4155) 2017-08-10 14:21:16 -07:00
bind-mounts.md selinux labels are ignored for bind mounts on services (#5061) 2017-10-20 14:21:36 -07:00
index.md Correct errors about data propagation into volumes and bind mounts (#5058) 2017-10-20 14:19:06 -07:00
tmpfs.md Removing duplicated word (#4297) 2017-08-21 14:57:38 -07:00
volumes.md Update code snippet (#5111) 2017-10-25 18:08:45 -07:00