Corrected two typos.

Signed-off-by: Nicolas Jouannem <nick@nickology.com>
This commit is contained in:
Nicolas Jouannem 2015-03-21 21:28:07 +01:00
parent bcc943e183
commit cb3f330696
1 changed files with 2 additions and 2 deletions

View File

@ -183,11 +183,11 @@ For example,
* `constraint:node==/node\d/` will match all nodes with `node` + 1 digit.
* `constraint:node!=/node-[01]/` will match all nodes, except `node-0` and `node-1`.
* `constraint:node!=/foo\[bar\]/` will match all nodes, except `foo[bar]`. You can see the use of escape characters here.
* `constraint:node==/(?i)node1/` will match node `node1` case-insensitive. So 'NoDe1' or 'NODE1' will also matched.
* `constraint:node==/(?i)node1/` will match node `node1` case-insensitive. So 'NoDe1' or 'NODE1' will also match.
## Port Filter
With this filter, `ports` are considered as a unique resource.
With this filter, `ports` are considered as unique resources.
```
$ docker run -d -p 80:80 nginx