Skip to content

Commit 3d2c580

Browse files
author
Victoria Bialas
committed
added diagram to voting app tutorial
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>
1 parent 93a9e29 commit 3d2c580

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed
Loading
Binary file not shown.

engine/getstarted-voting-app/index.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,16 @@ In this tutorial, you'll learn how to:
3737
* Use `docker machine` to create multiple virtual local hosts or
3838
dockerized cloud servers
3939
* Use `docker` commands to set up and run a swarm with manager and worker nodes
40-
* Deploy the `vote` app by feeding our example `docker-stack.yml` file to
40+
* Deploy the `vote` app services across the two nodes by feeding our example `docker-stack.yml` file to
4141
the `docker stack deploy` command
4242
* Test the app by voting for cats and dogs, and view the results
4343
* Use the `visualizer` to explore and understand the runtime app and services
4444
* Update the `docker-stack.yml` and redeploy the app using a different
4545
`vote` image to implement a poll on different choices
4646
* Use features new in Compose Version 3, highlighted in the sample app
4747

48+
![voting app diagram](images/vote-app-diagram.png)
49+
4850
## Services and images overview
4951

5052
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
5557
multi-container application.
5658

5759
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):
5961

6062
| Service | Description | Base Image |
6163
| ------------- |--------------| -----|
6264
| `vote` | Presents the voting interface via port `5000`. Viewable at `<manager-IP>:5000` | Based on a Python image, `dockersamples/examplevotingapp_vote` |
6365
| `result` | Displays the voting results via port 5001. Viewable at `<manager-IP>:5001` | Based on a Node.js image, `dockersamples/examplevotingapp_result` |
6466
| `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` |
6567
| `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` |
6769
| `worker` | A background service that transfers votes from the queue to permanent storage | Based on a .NET image, `dockersamples/examplevotingapp_worker` |
6870

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,
7072
we can also scale the application to deploy replicas
7173
of containerized services distributed across multiple nodes.
7274

0 commit comments

Comments
 (0)