1
0
mirror of https://github.com/docker/cli.git synced 2026-01-16 20:22:36 +03:00

docs: correct the placement constraints docker service example

- the constraint expression needs to be quoted
- add an actual redis container to run so the command line works

Signed-off-by: Anil Madhavapeddy <anil@docker.com>
Upstream-commit: d41a63b2c0
Component: cli
This commit is contained in:
Anil Madhavapeddy
2016-07-14 17:38:37 +01:00
committed by Tibor Vass
parent c045aaef40
commit a7e6ee6b34

View File

@@ -170,7 +170,8 @@ node type label equals queue:
```bash
$ docker service create \
--name redis_2 \
--constraint node.labels.type == queue
--constraint 'node.labels.type == queue' \
redis:3.0.6
```
## Related information