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
Copy file name to clipboardExpand all lines: chapters/docker-basics.adoc
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,17 +62,17 @@ Once your Docker host has been created, it then has a number of commands for man
62
62
. Upgrade Docker
63
63
. Configure the Docker client to talk to a host
64
64
65
-
You used Docker Machine already during the attendee setup. We won't need it too much further on. But if you need to create hosts, it's a very handy tool to know about. From now on we're mostly going to use the docker client.
65
+
Docker Machine was already installed during the attendee setup. We won't need it too much further on. But if you need to create hosts, it's a very handy tool to know about. From now on we're mostly going to use Docker client.
66
66
67
67
Find out more about the details at the link:https://docs.docker.com/machine/[Docker Machine Website].
68
68
69
-
Check if docker machine is working:
69
+
Open Docker shell, check if docker machine is working:
70
70
71
71
docker-machine -v
72
72
73
73
It shows the output similar to the one shown below:
74
74
75
-
docker-machine version 0.3.0 (0a251fe)
75
+
docker-machine version 0.5.0 (04cfa58)
76
76
77
77
NOTE: The exact version may differ based upon how recently the installation was performed.
78
78
@@ -86,7 +86,7 @@ Check if your client is working using the following command:
86
86
87
87
It shows the output similar to the following:
88
88
89
-
Docker version 1.7.0, build 0baf609
89
+
Docker version 1.9.0, build 76d6bc9
90
90
91
91
NOTE: The exact version may differ based upon how recently the installation was performed.
92
92
@@ -101,11 +101,11 @@ Get a full list of available commands with
101
101
102
102
docker
103
103
104
-
A more comprehensive list of commands is also available in <<Common_Docker_Commands>>.
104
+
A more commonly used list of commands is available at <<Common_Docker_Commands>>.
105
105
106
106
### Verify Docker Configuration
107
107
108
-
Check if your Docker Host is running:
108
+
Open Docker shell, check if your Docker Host is running:
109
109
110
110
docker-machine ls
111
111
@@ -114,16 +114,16 @@ You should see the output similar to:
The machines that are part of the cluster have the cluster’s name in the SWARM column, blank otherwise. For example, "`lab`" and "`summit2015`" are standalone machines where as all other machines are part of the "`swarm-master`" cluster. The Swarm master is also identified by (master) in the SWARM column.
139
+
The machines that are part of the cluster have the cluster’s name in the SWARM column, blank otherwise. For example, "`default`" is standalone machines where as all other machines are part of the "`swarm-master`" cluster. The Swarm master is also identified by (master) in the SWARM column.
141
140
+
142
141
. Connect to the Swarm cluster and find some information about it:
0 commit comments