From e9f1f760f220cbd0f3df68b09ab8c10b27dfa0e9 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Sat, 14 Jun 2014 15:54:27 +0200 Subject: [PATCH] Fix missing leading slash for /bin/bash executable --- docs/sources/introduction/understanding-docker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sources/introduction/understanding-docker.md b/docs/sources/introduction/understanding-docker.md index 7d4cea9eaa..3a7615ebc8 100644 --- a/docs/sources/introduction/understanding-docker.md +++ b/docs/sources/introduction/understanding-docker.md @@ -208,7 +208,7 @@ is: * What Docker image to build the container from, here `ubuntu`, a base Ubuntu image; * The command you want to run inside the container when it is launched, -here `bin/bash`, to start the Bash shell inside the new container. +here `/bin/bash`, to start the Bash shell inside the new container. So what happens under the hood when we run this command?