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
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.
81
81
82
82
### Step 3. Run Docker commands on the instance
83
83
@@ -100,7 +100,7 @@ Follow along with this example to create a Dockerized <a href="https://aws.amazo
100
100
101
101
Start with something basic like `docker run hello-world`, or for a more interesting test, run a Dockerized webserver on your new remote machine.
102
102
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.
104
104
105
105
$ docker run -d -p 8000:80 --name webserver kitematic/hello-world-nginx
106
106
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
122
122
123
123
$ docker-machine stop aws-sandbox
124
124
$ 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
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.
0 commit comments