diff --git a/docs/swarm_at_scale/03-create-cluster.md b/docs/swarm_at_scale/03-create-cluster.md index d9a54317b6..86945b9436 100644 --- a/docs/swarm_at_scale/03-create-cluster.md +++ b/docs/swarm_at_scale/03-create-cluster.md @@ -12,7 +12,7 @@ weight=-89 # Setup cluster resources Now that [your underlying network infrastructure is built](02-deploy-infra.md), -you can deploye and configure the Swarm cluster. A host in a Swarm cluster is +you can deploy and configure the Swarm cluster. A host in a Swarm cluster is called a *node*. So, these instructions refer to each AWS EC2 instances as a node and refers to each node by the **Name** it appears as in your EC2 Dashboard**. diff --git a/docs/swarm_at_scale/04-deploy-app.md b/docs/swarm_at_scale/04-deploy-app.md index fa4544f422..bf195ab4fa 100644 --- a/docs/swarm_at_scale/04-deploy-app.md +++ b/docs/swarm_at_scale/04-deploy-app.md @@ -29,7 +29,7 @@ not: - Worker containers: custom built image - Results containers: custom built image -All custom built images are built using Dockerfile's pulled from the +All custom built images are built using Dockerfiles pulled from the [example application's public GitHub repository](https://github.com/docker/swarm-microservice-demo-v1). @@ -64,7 +64,7 @@ repository](https://github.com/docker/swarm-microservice-demo-v1). 4. View the Dockerfile contents. - $ cat Dockerfile + $ cat Dockerfile # Using official python runtime base image FROM python:2.7 # Set the application directory @@ -210,7 +210,7 @@ In the following steps, your launch several containers to the voting application specify *node constraints*, forcing Swarm to start the contaienrs on `frontend01` and `frontend02`. Port `5000` on each node is mapped to port `80` inside of each container. This allows connections to come in to each - node on port `5000` and be forwarded to port `80` inside of each container. + node on port `5000` and be forwarded to port `80` inside of each container. Both containers are attached to the `mynet` overlay network and both containers are given the `votingapp-local` hostname. The