You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
added links to the glossary for image and container
updated diagram colors, added sketch source file
Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
A service is a bit of executable code designed to accomplish
@@ -55,18 +57,18 @@ deploy it to a swarm and manage it as a distributed
55
57
multi-container application.
56
58
57
59
The voting app you are about to deploy is composed
58
-
of several services, each based on an image:
60
+
of several services, each based on an [image](/engine/reference/glossary.md#image):
59
61
60
62
| Service | Description | Base Image |
61
63
| ------------- |--------------| -----|
62
64
|`vote`| Presents the voting interface via port `5000`. Viewable at `<manager-IP>:5000`| Based on a Python image, `dockersamples/examplevotingapp_vote`|
63
65
|`result`| Displays the voting results via port 5001. Viewable at `<manager-IP>:5001`| Based on a Node.js image, `dockersamples/examplevotingapp_result`|
64
66
|`visualizer`| A web app that shows a map of the deployment of the various services across the available nodes via port `8080`. Viewable at `<manager-IP>:8080`| Based on a Node.js image, `dockersamples/visualizer`|
65
67
|`redis`| Collects raw voting data and stores it in a key/value queue | Based on a `redis` image, `redis:alpine`|
66
-
|`db`| A PostgreSQL service which provides permanent storage on a host volume | Based on a `postgres` image, `postgres:9.4`|
68
+
|`db`| A PostgreSQL service which provides permanent storage on a host volume | Based on a `postgres` image, `postgres:9.4`|
67
69
|`worker`| A background service that transfers votes from the queue to permanent storage | Based on a .NET image, `dockersamples/examplevotingapp_worker`|
68
70
69
-
Each service will run in its own container. Using swarm mode,
71
+
Each service will run in its own [container](/engine/reference/glossary.md#container). Using swarm mode,
70
72
we can also scale the application to deploy replicas
71
73
of containerized services distributed across multiple nodes.
0 commit comments