Browse code

fixed code formatting on docs.docker.com

Signed-off-by: Ian Babrou <ibobrik@gmail.com>

Ian Babrou authored on 2015/03/28 20:31:02
Showing 1 changed files
... ...
@@ -75,8 +75,8 @@ To remove unnecessary artifacts,
75 75
         $ docker rmi -f $(docker images -q -a -f dangling=true)
76 76
 
77 77
     This command uses `docker images` to list all images (`-a` flag) by numeric
78
-    IDs (`-q` flag) and filter them to find dangling images (`-f
79
-    dangling=true`). Then, the `docker rmi` command forcibly (`-f` flag) removes
78
+    IDs (`-q` flag) and filter them to find dangling images (`-f dangling=true`).
79
+    Then, the `docker rmi` command forcibly (`-f` flag) removes
80 80
     the resulting list. To remove just one image, use the `docker rmi ID`
81 81
     command.
82 82