Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions engine/swarm/services.md
Original file line number Diff line number Diff line change
Expand Up @@ -335,10 +335,9 @@ $ docker service create --name my_web \
```

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.
Connecting to port 8080 on **any** of the 10 nodes will connect you to one of
the three `nginx` tasks. You can test this using `curl` (the HTML output is
truncated):
are running the tasks; connecting to port 8080 on **any** of the 10 nodes will
connect you to one of the three `nginx` tasks. You can test this using `curl`
(the HTML output is truncated):

```bash
$ curl localhost:8080
Expand Down