X Tutup
Skip to content

Commit 5d92f35

Browse files
author
Victoria Bialas
committed
fixed typos which were referencing the wrong example machnines
Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
1 parent 51fb3f0 commit 5d92f35

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/examples/aws.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ Follow along with this example to create a Dockerized <a href="https://aws.amazo
7575
NAME ACTIVE DRIVER STATE URL SWARM DOCKER ERRORS
7676
aws-sandbox * amazonec2 Running tcp://52.90.113.128:2376 v1.10.0
7777
default - virtualbox Running tcp://192.168.99.100:2376 v1.10.0-rc4
78-
docker-sandbox - digitalocean Running tcp://104.131.43.236:2376 v1.9.1
78+
aws-sandbox - digitalocean Running tcp://104.131.43.236:2376 v1.9.1
7979

80-
The new `aws-sandbox` instance is running, and it is the active host as indicated by the asterisk (*). When you create a new machine, your command shell automatically connects it. If for some reason your new machine is not the active host, you'll need to run `docker-machine env aws-sandbox`, followed by `eval $(docker-machine env aws-sandbox)` to connect to it.
80+
The new `aws-sandbox` instance is running, and it is the active host as indicated by the asterisk (*). When you create a new machine, your command shell automatically connects to it. If for some reason your new machine is not the active host, you'll need to run `docker-machine env aws-sandbox`, followed by `eval $(docker-machine env aws-sandbox)` to connect to it.
8181

8282
### Step 3. Run Docker commands on the instance
8383

@@ -100,7 +100,7 @@ Follow along with this example to create a Dockerized <a href="https://aws.amazo
100100

101101
Start with something basic like `docker run hello-world`, or for a more interesting test, run a Dockerized webserver on your new remote machine.
102102

103-
In this example, the `-p` option is used to expose port 80 from the `nginx` container and make it accessible on port `8000` of the `docker-sandbox` host.
103+
In this example, the `-p` option is used to expose port 80 from the `nginx` container and make it accessible on port `8000` of the `aws-sandbox` host.
104104

105105
$ docker run -d -p 8000:80 --name webserver kitematic/hello-world-nginx
106106
Unable to find image 'kitematic/hello-world-nginx:latest' locally
@@ -122,7 +122,7 @@ To remove an instance and all of its containers and images, first stop the machi
122122

123123
$ docker-machine stop aws-sandbox
124124
$ docker-machine rm aws-sandbox
125-
Do you really want to remove "docker-sandbox"? (y/n): y
125+
Do you really want to remove "aws-sandbox"? (y/n): y
126126
Successfully removed aws-sandbox
127127
## Where to go next
128128

docs/examples/ocean.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ To generate your access token:
7474
default - virtualbox Running tcp://192.168.99.100:2376
7575
docker-sandbox * digitalocean Running tcp://45.55.139.48:2376
7676

77-
The new `docker-sandbox` machine is running, and it is the active host as indicated by the asterisk (*). When you create a new machine, your command shell automatically connects it. If for some reason your new machine is not the active host, you'll need to run `docker-machine env aws-sandbox`, followed by `eval $(docker-machine env docker-sandbox)` to connect to it.
77+
The new `docker-sandbox` machine is running, and it is the active host as indicated by the asterisk (*). When you create a new machine, your command shell automatically connects to it. If for some reason your new machine is not the active host, you'll need to run `docker-machine env docker-sandbox`, followed by `eval $(docker-machine env docker-sandbox)` to connect to it.
7878

7979
### Step 4. Run Docker commands on the Droplet
8080

0 commit comments

Comments
 (0)
X Tutup