From 0dc996a7d779100b44e5c6f492efe231140d76cf Mon Sep 17 00:00:00 2001 From: Ian Babrou Date: Sat, 28 Mar 2015 14:31:02 +0300 Subject: [PATCH] fixed code formatting on docs.docker.com Signed-off-by: Ian Babrou --- docs/sources/project/set-up-dev-env.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/sources/project/set-up-dev-env.md b/docs/sources/project/set-up-dev-env.md index 3ab92ae56e..80d4f335b3 100644 --- a/docs/sources/project/set-up-dev-env.md +++ b/docs/sources/project/set-up-dev-env.md @@ -75,8 +75,8 @@ To remove unnecessary artifacts, $ docker rmi -f $(docker images -q -a -f dangling=true) This command uses `docker images` to list all images (`-a` flag) by numeric - IDs (`-q` flag) and filter them to find dangling images (`-f - dangling=true`). Then, the `docker rmi` command forcibly (`-f` flag) removes + IDs (`-q` flag) and filter them to find dangling images (`-f dangling=true`). + Then, the `docker rmi` command forcibly (`-f` flag) removes the resulting list. To remove just one image, use the `docker rmi ID` command.