mirror of https://github.com/docker/docs.git
fix swarm callout formatting (#17986)
Signed-off-by: Craig Osterhout <craig.osterhout@docker.com>
This commit is contained in:
parent
48130331d5
commit
44df3899d2
|
@ -42,7 +42,15 @@ services:
|
|||
|
||||
In this Swarm YAML file, we have just one object: a `service`, describing a scalable group of identical containers. In this case, you'll get just one container (the default), and that container will be based on your `getting-started` image created in [Part 2](02_our_app.md) of the Quickstart tutorial. In addition, We've asked Swarm to forward all traffic arriving at port 8000 on our development machine to port 3000 inside our getting-started container.
|
||||
|
||||
> **Kubernetes Services and Swarm Services are very different!** Despite the similar name, the two orchestrators mean very different things by the term 'service'. In Swarm, a service provides both scheduling _and_ networking facilities, creating containers and providing tools for routing traffic to them. In Kubernetes, scheduling and networking are handled separately: _deployments_ (or other controllers) handle the scheduling of containers as pods, while _services_ are responsible only for adding networking features to those pods.
|
||||
> **Kubernetes Services and Swarm Services are very different!**
|
||||
>
|
||||
> Despite the similar name, the two orchestrators mean very different things by
|
||||
> the term 'service'. In Swarm, a service provides both scheduling _and_
|
||||
> networking facilities, creating containers and providing tools for routing
|
||||
> traffic to them. In Kubernetes, scheduling and networking are handled
|
||||
> separately: _deployments_ (or other controllers) handle the scheduling of
|
||||
> containers as pods, while _services_ are responsible only for adding
|
||||
> networking features to those pods.
|
||||
|
||||
## Deploy and check your application
|
||||
|
||||
|
|
Loading…
Reference in New Issue