Signed-off-by: Ian Babrou <ibobrik@gmail.com>
| ... | ... |
@@ -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 |
|