add quotes in doc

Signed-off-by: Victor Vieux <victorvieux@gmail.com>
This commit is contained in:
Victor Vieux 2015-03-24 16:49:18 -06:00
parent 92ef21d2ec
commit 24093beb85
1 changed files with 4 additions and 4 deletions

View File

@ -157,9 +157,9 @@ For example,
```bash ```bash
# file example # file example
$ echo 10.0.0.[11:100]:2375 >> /tmp/my_cluster $ echo "10.0.0.[11:100]:2375" >> /tmp/my_cluster
$ echo 10.0.1.[15:20]:2375 >> /tmp/my_cluster $ echo "10.0.1.[15:20]:2375" >> /tmp/my_cluster
$ echo 192.168.1.2:[2:20]375 >> /tmp/my_cluster $ echo "192.168.1.2:[2:20]375" >> /tmp/my_cluster
# start the manager # start the manager
$ swarm manage -H tcp://<swarm_ip:swarm_port> file:///tmp/my_cluster $ swarm manage -H tcp://<swarm_ip:swarm_port> file:///tmp/my_cluster
@ -167,7 +167,7 @@ $ swarm manage -H tcp://<swarm_ip:swarm_port> file:///tmp/my_cluster
```bash ```bash
# nodes example # nodes example
$ swarm manage -H <swarm_ip:swarm_port> nodes://10.0.0.[10:200]:2375,10.0.1.[2:250]:2375 $ swarm manage -H <swarm_ip:swarm_port> "nodes://10.0.0.[10:200]:2375,10.0.1.[2:250]:2375"
``` ```
## Contributing a new discovery backend ## Contributing a new discovery backend