Browse code

Remove -t="" and -m="". Make -t and -m options consistent with help text and other documentation.

Docker-DCO-1.1-Signed-off-by: Aaron Huslage <huslage@gmail.com> (github: huslage)

Aaron Huslage authored on 2014/12/27 02:31:01
Showing 1 changed files
... ...
@@ -192,7 +192,7 @@ Now we have a container with the change we want to make. We can then
192 192
 commit a copy of this container to an image using the `docker commit`
193 193
 command.
194 194
 
195
-    $ sudo docker commit -m="Added json gem" -a="Kate Smith" \
195
+    $ sudo docker commit -m "Added json gem" -a "Kate Smith" \
196 196
     0b2616b0e5a8 ouruser/sinatra:v2
197 197
     4f177bd27a9ff0f6dc2a830403925b5360bfe0b93d476f7fc3231110e7f71b1c
198 198
 
... ...
@@ -273,7 +273,7 @@ Sinatra gem.
273 273
 
274 274
 Now let's take our `Dockerfile` and use the `docker build` command to build an image.
275 275
 
276
-    $ sudo docker build -t="ouruser/sinatra:v2" .
276
+    $ sudo docker build -t ouruser/sinatra:v2 .
277 277
     Sending build context to Docker daemon 2.048 kB
278 278
     Sending build context to Docker daemon 
279 279
     Step 0 : FROM ubuntu:14.04