From 3bcd9b455ca10218b3d9bd58e9a86141393f7f39 Mon Sep 17 00:00:00 2001 From: Manmeet Gill Date: Sun, 27 Nov 2016 16:44:36 +1100 Subject: [PATCH] Replace 'ls Dockerfile' with 'ls' Running `ls Dockerfile`, if following the guide, would give you nothing. Dockerfile is not a directory. Running `ls` would *return* `Dockerfile`. --- engine/getstarted/step_four.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/getstarted/step_four.md b/engine/getstarted/step_four.md index b63cab5b86..4b26aef769 100644 --- a/engine/getstarted/step_four.md +++ b/engine/getstarted/step_four.md @@ -41,7 +41,7 @@ commands to run. Your recipe is going to be very short. $ touch Dockerfile - The command appears to do nothing but it actually creates the Dockerfile in the current directory. Just type `ls Dockerfile` to see it. + The command appears to do nothing but it actually creates the Dockerfile in the current directory. Just type `ls` to see it. $ ls Dockerfile