mirror of https://github.com/docker/docs.git
Merge pull request #1123 from thaJeztah/update-publishing-doc
remove confusing sentence from "publishing" section
This commit is contained in:
commit
0c784a4547
|
@ -350,10 +350,9 @@ $ docker service create --name my_web \
|
||||||
```
|
```
|
||||||
|
|
||||||
Three tasks will run on up to three nodes. You don't need to know which nodes
|
Three tasks will run on up to three nodes. You don't need to know which nodes
|
||||||
are running the tasks, as long as exactly three tasks are running at all times.
|
are running the tasks; connecting to port 8080 on **any** of the 10 nodes will
|
||||||
Connecting to port 8080 on **any** of the 10 nodes will connect you to one of
|
connect you to one of the three `nginx` tasks. You can test this using `curl`
|
||||||
the three `nginx` tasks. You can test this using `curl` (the HTML output is
|
(the HTML output is truncated):
|
||||||
truncated):
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ curl localhost:8080
|
$ curl localhost:8080
|
||||||
|
|
Loading…
Reference in New Issue